diff --git a/.github/workflows/archive-full-index.yml b/.github/workflows/archive-full-index.yml new file mode 100644 index 00000000000000..670b4a7710724d --- /dev/null +++ b/.github/workflows/archive-full-index.yml @@ -0,0 +1,128 @@ +name: '[Index] Generate the full bitnami/charts index.yaml' +on: + push: + branches: + - index +jobs: + get: + runs-on: ubuntu-latest + name: Get + steps: + - id: checkout-repo-index + name: Checkout repo + uses: actions/checkout@v3 + with: + ref: index + path: index + - id: checkout-repo-full-index + name: Checkout repo + uses: actions/checkout@v3 + with: + ref: archive-full-index + path: full-index + - id: get-last-indexes + name: Get indexes + run: | + cp index/bitnami/index.yaml ./last_index.yaml + cp full-index/bitnami/index.yaml ./previous_index.yaml + - id: upload-artifact + name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: indexes + path: ./*index.yaml + retention-days: 2 + if-no-files-found: error + merge: + runs-on: ubuntu-latest + needs: get + name: Merge + steps: + - id: download-artifact + name: Download artifacts + uses: actions/download-artifact@v3 + with: + name: indexes + - id: merge + name: Merge + run: yq eval-all '. as $item ireduce ({}; . *+ $item )' previous_index.yaml last_index.yaml > duplicates_index.yaml + - id: remove + name: Remove duplicates + # Removes duplicates per entry using 'digest' as value. + run: yq eval '.entries[] |= unique_by(.digest)' duplicates_index.yaml > index.yaml + - id: upload-artifact + name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: archive-full-index + path: index.yaml + retention-days: 2 + if-no-files-found: error + checks: + runs-on: ubuntu-latest + needs: merge + name: Checks + steps: + - id: download-artifacts + name: Download artifacts + uses: actions/download-artifact@v3 + - id: index-lint + name: Lint archive full index + # Lint the resulting archive full index using ignoring identation and lin-length rules. + run: | + cat << EOF > config + extends: relaxed + + rules: + indentation: + level: error + line-length: disable + EOF + yamllint -c config archive-full-index/index.yaml + - id: check-no-dups + name: Checks there are not any duplicates + # Try to find duplicate digest attributes which would mean there are duplicates. + run: | + yq eval '.entries[][].digest' archive-full-index/index.yaml | sort | uniq -d | ( ! grep sha256 ) + - id: check-missing-releases + name: Checks there are not missing releases + # Available URLs should be fine if everything went well during the merge & deduplication. + run: | + yq eval '.entries[][].urls[]' indexes/last_index.yaml |sort| uniq > last_index_urls + yq eval '.entries[][].urls[]' archive-full-index/index.yaml | sort| uniq > index_urls + missing_urls="$(comm -13 index_urls last_index_urls)" + if [ -n "${missing_urls}" ]; then + echo "Found missing URLs:\n${missing_urls}" + exit 1 + fi + echo "No missing releases detected" + update: + runs-on: ubuntu-latest + needs: checks + name: Update + steps: + - id: checkout-repo + name: Checkout repo + uses: actions/checkout@v3 + with: + ref: archive-full-index + token: ${{ secrets.BITNAMI_BOT_TOKEN }} + - id: download-artifact-archive-full-index + name: Download artifacts + uses: actions/download-artifact@v3 + with: + name: archive-full-index + - id: update-index + name: git-add-push + run: | + git config user.name "Bitnami Containers" + git config user.email "bitnami-bot@vmware.com" + git fetch origin archive-full-index + git reset --hard $(git commit-tree origin/archive-full-index^{tree} -m "Update index.yaml") + # Compare size of files + if [[ $(stat -c%s bitnami/index.yaml) -gt $(stat -c%s index.yaml) ]]; then + echo "New index.yaml file is shorter than the current one" + exit 1 + fi + cp index.yaml bitnami/index.yaml + git add bitnami/index.yaml && git commit --signoff --amend --no-edit && git push origin archive-full-index --force-with-lease diff --git a/.github/workflows/sync-chart-cloudflare-index.yml b/.github/workflows/sync-chart-cloudflare-index.yml new file mode 100644 index 00000000000000..8e7b42059a6787 --- /dev/null +++ b/.github/workflows/sync-chart-cloudflare-index.yml @@ -0,0 +1,36 @@ +name: '[Index] Sync bitnami/charts index.yaml to Cloudflare' + +on: + push: + branches: + - index + +# Remove all permissions by default +permissions: {} + +jobs: + deploy: + name: Sync bitnami/charts index.yaml to Cloudflare + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - uses: actions/checkout@master + - name: Upload to Cloudflare using a BCOM upload proxy + env: + CLOUDFLARE_CLIENT_ID: ${{ secrets.CLOUDFLARE_CLIENT_ID }} + CLOUDFLARE_CLIENT_SECRET: ${{ secrets.CLOUDFLARE_CLIENT_SECRET }} + CLOUDFLARE_USER_AUTH: ${{ secrets.CLOUDFLARE_USER_AUTH }} + run: | + export TOKEN=$(curl -s --location 'https://api-esp.broadcom.com/auth/oauth/v2/token' \ + --data-urlencode "client_id=${CLOUDFLARE_CLIENT_ID}" \ + --data-urlencode "client_secret=${CLOUDFLARE_CLIENT_SECRET}" \ + --data-urlencode 'grant_type=client_credentials' | jq .access_token -r ) + + + curl --location --request PUT 'https://api-esp.broadcom.com/crushftp/fileUpload' \ + --header "userAuth: Basic ${CLOUDFLARE_USER_AUTH}" \ + --header 'filePath: /index.yaml' \ + --header 'Content-Type: text/yaml' \ + --header "Authorization: Bearer $TOKEN" \ + --upload-file bitnami/index.yaml diff --git a/.github/workflows/sync-chart-s3-index.yml b/.github/workflows/sync-chart-s3-index.yml new file mode 100644 index 00000000000000..0e5e232adb7dd9 --- /dev/null +++ b/.github/workflows/sync-chart-s3-index.yml @@ -0,0 +1,24 @@ +name: '[Index] Sync bitnami/charts index.yaml to S3' + +on: + push: + branches: + - index + +jobs: + deploy: + name: Sync bitnami/charts index.yaml to S3 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Upload to S3 + env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_PUBLISH_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_PUBLISH_SECRET_ACCESS_KEY }} + AWS_ASSUME_ROLE_ARN: ${{ secrets.AWS_PUBLISH_ROLE_ARN }} + AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} + run: | + # Configure AWS account + export $(printf "AWS_ACCESS_KEY_ID=%s AWS_SECRET_ACCESS_KEY=%s AWS_SESSION_TOKEN=%s" $(aws sts assume-role --role-arn ${AWS_ASSUME_ROLE_ARN} --role-session-name GitHubIndex --query "Credentials.[AccessKeyId,SecretAccessKey,SessionToken]" --output text)) + aws s3 cp --follow-symlinks bitnami/index.yaml s3://${{ secrets.AWS_S3_BUCKET }}/bitnami/ + aws s3 cp --follow-symlinks bitnami/index.html s3://${{ secrets.AWS_S3_BUCKET }}/ diff --git a/bitnami/index.html b/bitnami/index.html new file mode 100644 index 00000000000000..2ff022b62284ea --- /dev/null +++ b/bitnami/index.html @@ -0,0 +1,24 @@ + + +
+ +
+ $ helm repo add bitnami https://charts.bitnami.com/bitnami
+ $ helm search repo bitnami
+ $ helm install my-release bitnami/<chart>
+
+
+ For more information, please refer to the Bitnami charts project on GitHub.
+ + + diff --git a/bitnami/index.yaml b/bitnami/index.yaml new file mode 100644 index 00000000000000..d7d767a9cb879e --- /dev/null +++ b/bitnami/index.yaml @@ -0,0 +1,514189 @@ +apiVersion: v1 +entries: + airflow: + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.10.0-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r42 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.10.0-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.10.0-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.46.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-08-16T10:02:21.573287171Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 5809010b99226914ebce90571146a8bdf7ac70f0af7f054c9013e837ada3672d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-19.0.1.tgz + version: 19.0.1 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.3-debian-12-r8 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r41 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.3-debian-12-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.3-debian-12-r4 + - name: git + image: docker.io/bitnami/git:2.46.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-08-13T10:43:50.081825995Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 4030754b61fb8fb656707306b82dc4af54bd465e603f32f0b29054f0288a39fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-19.0.0.tgz + version: 19.0.0 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.3-debian-12-r8 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r41 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.3-debian-12-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.3-debian-12-r4 + - name: git + image: docker.io/bitnami/git:2.46.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-08-06T19:01:11.544383738Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 94448763600c3be4fb6cd2c3b3afd1c3c3bc848b30e58db704e8ce1a2a8301fb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.17.tgz + version: 18.3.17 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.3-debian-12-r7 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r41 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.3-debian-12-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.3-debian-12-r4 + - name: git + image: docker.io/bitnami/git:2.46.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-08-01T16:22:19.195896661Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 227d5ef065b9e6f49d73ac641af7b0c3313cf10415daef33b360ee4ad6480154 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.16.tgz + version: 18.3.16 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.3-debian-12-r6 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r41 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.3-debian-12-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.3-debian-12-r4 + - name: git + image: docker.io/bitnami/git:2.46.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-08-01T09:39:22.970383668Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 58e56b21dd7a368932cde178c87e670906102dd69a28a083aa828dbb6da3b7ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.15.tgz + version: 18.3.15 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.3-debian-12-r4 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r40 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.3-debian-12-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.3-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-07-24T06:27:03.629065951Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 6604a9d2662cea80d927522197e7e696d257e712de3b5823d654a77ed8ab8cdd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.13.tgz + version: 18.3.13 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.3-debian-12-r3 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r39 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.3-debian-12-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.3-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-07-24T02:31:49.507294488Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 4b4a76957d5427c66cfa548b35f0de0d23228ebc91dac11ea3473df58c2e7445 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.12.tgz + version: 18.3.12 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.3-debian-12-r2 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r38 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.3-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.3-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-07-23T16:27:44.419669039Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: b12bfc2bb2120f09e900072af6b07c3453c8c0e08d11bf736434e9aa02ac872d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.11.tgz + version: 18.3.11 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.3-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r38 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.3-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.3-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-07-17T02:26:10.196115298Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 30c06124c438a1dfdef42d3693ab12603e669e529cf9fdc1eaebfdc3b6950ed7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.10.tgz + version: 18.3.10 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.2-debian-12-r3 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r38 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.2-debian-12-r2 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.2-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-07-16T11:42:05.445187535Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: d577e5843a44be527d180a2522fb68b6773b96c69d1130e1d7c9e76cd6e4b715 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.9.tgz + version: 18.3.9 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.2-debian-12-r3 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r38 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.2-debian-12-r2 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.2-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-07-05T13:19:16.950636955Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: c77c43f21ebc4a8b52569883b1171b6cacf6bc70e9927d70ed4c12173618a5d9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.8.tgz + version: 18.3.8 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.2-debian-12-r2 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r37 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.2-debian-12-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.2-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-07-03T18:24:30.344000915Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: c8ca6b36e79f47395ce25b35b8d59822ab274f56f1a6c204ddf90190f51f7113 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.7.tgz + version: 18.3.7 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.2-debian-12-r2 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r37 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.2-debian-12-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.2-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-07-03T07:32:26.413717466Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: ec0195cf144272c47740f88ff58ff3cb946825a87f41e058c3dc3a2c8b340cad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.6.tgz + version: 18.3.6 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.2-debian-12-r1 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r35 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.2-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.2-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-06-25T13:25:34.503729498Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: be89ab0eda22006317630ba71a6570e6583cb5f5d2bc8fe8b8de901610cb1cbd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.5.tgz + version: 18.3.5 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.2-debian-12-r1 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r35 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.2-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.2-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-06-18T11:36:30.52436102Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 33bee8fbd5e103f06e6e1698a14f30b0022d4342902f30faf76ad687837688a0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.4.tgz + version: 18.3.4 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.2-debian-12-r1 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r35 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.2-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.2-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-06-17T12:19:36.151235709Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 49137abf4ab773e35e50f8f879b54f41457fdabc1ee1c4c4f6cc40f63e53d979 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.3.tgz + version: 18.3.3 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.2-debian-12-r1 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r35 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.2-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.2-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-06-13T02:40:20.804879741Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 777eb2964b2cdb5da7aa3f7cc83f43ca1178ccd0a2495e0385fcbd39a5e46874 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.2.tgz + version: 18.3.2 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.2-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r35 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.2-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.2-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-06-10T15:38:42.189791862Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: da858d274d4f949e77eff08458b31baf529f3d2781d94cf3712522b6edd0067d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.1.tgz + version: 18.3.1 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r5 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r35 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r6 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-06-06T16:43:06.672233469Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 5fba362477a2dbe420151a0582efbd2b814ef11934d422ae85e872bed2533982 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.3.0.tgz + version: 18.3.0 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r5 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r35 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r6 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-06-06T15:31:22.193235087Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 03f9b6f89b0560ca7911185eacb92c88d6b475398d58395d161a6fc2fc1c85da + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.2.5.tgz + version: 18.2.5 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r5 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r35 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r6 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-06-06T14:07:14.743111606Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: aebf2e3d8739763243ca62dcb491d86dd5618a21c9467a833040e59cffd7171c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.2.4.tgz + version: 18.2.4 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r4 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r34 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r5 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-06-05T14:18:04.588592854Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: a848d7052f7ee8c3505d55512b275ad00c256b9b7838436cfa168eaf8978aec6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.2.3.tgz + version: 18.2.3 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r4 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r34 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r5 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-06-05T09:45:57.250087032Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 0e0b832a26d6ebaba7aedc6be9a35fd25e99855ca27d7b2540bc4cea98d86049 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.2.2.tgz + version: 18.2.2 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r4 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r34 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r5 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-05-30T15:11:17.334144106Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 79f2396fe53eb8b2593c18b0feae9d279addec251623da8bde9862fa3c26ece7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.2.1.tgz + version: 18.2.1 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r4 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r34 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r5 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-05-21T06:10:50.566608353Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 84e79fc588e85fcda2440ceef96ceb337e0f422921c569f49107c011294a27eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.1.1.tgz + version: 18.1.1 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r4 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r34 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-05-17T14:12:53.522073357Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 806758c40d43ee45e7b39c9b1333801ed690432cde248b521bafd06b3afc6337 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.1.0.tgz + version: 18.1.0 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r4 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r34 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-05-13T21:38:42.055724375Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 054bd425c99a22eb9cfe208145b3626f2428bcd6168d83726905bf65edc2cd21 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.10.tgz + version: 18.0.10 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r3 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r33 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-05-13T16:41:10.496718129Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 1c2faf73fd1c56e3d1d0c641b6ffe8f24e32260a333af94f8ff3d0e2c1b9d8d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.9.tgz + version: 18.0.9 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.1-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r31 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.1-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.1-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-05-06T20:22:45.756248675Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: deffdd471af97e143f12276ce5ac70275a28eb43c98d5c12af314e75e8cba71b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.8.tgz + version: 18.0.8 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.0-debian-12-r2 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r30 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.0-debian-12-r2 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.0-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-04-26T06:04:55.305221202Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 344729cc932db601471eac24c23eff6f82a95aeb776869c9631efb733c17477a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.7.tgz + version: 18.0.7 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.0-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r29 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.0-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.0-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-04-19T09:29:26.019145102Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: fe336d8e1ffe09c2edbfbc4fcd47661c6adf8de3855956784ea32d590046595f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.6.tgz + version: 18.0.6 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.0-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r29 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.0-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.0-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-04-18T07:01:16.673040834Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 59d6c9a683c67ec68e1de12818127c0a8f41ad7293d29acbb5e437e3814f981c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.5.tgz + version: 18.0.5 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.0-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r29 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.0-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.0-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-04-12T07:08:22.696555448Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 4d5a3cfa8fa0a8d9b44d5461a880ade4b1cddcdb897c5f55d1cead29db21aded + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.4.tgz + version: 18.0.4 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.9.0-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r29 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.9.0-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.9.0-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-04-09T18:33:32.116474533Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 4f0cc2bc0ee2d7948f43d63534686d4976c90e4cbb092073ce62e9ff7cd58b94 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.3.tgz + version: 18.0.3 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.4-debian-12-r2 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r29 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.4-debian-12-r2 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.4-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2024-04-05T18:30:06.510163884Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 412839181724e73ab9b0c43eb887798169e34d2609f90f7aa676f9ec16c5dc45 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.2.tgz + version: 18.0.2 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.4-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r27 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.4-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.4-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2024-04-04T19:47:31.193650648Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: a59b1b54a692f68c87dc3c39f30a307d96150e22c2a0d9d10b0a5bae37815052 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.1.tgz + version: 18.0.1 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.3-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r27 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.3-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.3-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2024-03-20T13:39:07.479170904Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 217bcc70a86f075397863fc75d792037341ff233952c58b73b0bc921dd18b2c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-18.0.0.tgz + version: 18.0.0 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.3-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r27 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.3-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.3-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2024-03-13T14:26:23.546356898Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: f9ecb4da44e6a40932f3432c5ba489f16cb0916b7a3b24ca198c9ea5867c5d48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-17.2.4.tgz + version: 17.2.4 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.2-debian-12-r4 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r27 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.2-debian-12-r3 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.2-debian-12-r4 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2024-03-13T11:13:45.75296937Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 0c581983e1821491e591464aa66e923abab515b2b39433f2e803d0e28759b379 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-17.2.3.tgz + version: 17.2.3 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.2-debian-12-r4 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r27 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.2-debian-12-r3 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.2-debian-12-r4 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2024-03-11T10:02:07.9633144Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 4005256b6dd7dba326fcc9510fba50bcd4e95982cc15ab1639a2de4085d9977c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-17.2.2.tgz + version: 17.2.2 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.2-debian-12-r4 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r27 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.2-debian-12-r3 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.2-debian-12-r4 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2024-03-08T16:21:06.637728662Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 143309fc196f01f8449f99796dab04473b52b6b06c7256640e340e38fc9ba62f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-17.2.1.tgz + version: 17.2.1 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.2-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r24 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.2-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.2-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2024-03-07T14:49:10.822886091Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 740646bf72dcf24a0235ed7e597dc41a9b40189393e8b7cafe5b99bf7c26296b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-17.2.0.tgz + version: 17.2.0 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.2-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r24 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.2-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.2-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2024-03-06T10:40:13.259735274Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: e9a1dcce4dab51144959892451165744aa718d2be09b9c1dc2ca7ae12b9f38eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-17.1.0.tgz + version: 17.1.0 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.2-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r24 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.2-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.2-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2024-03-04T10:50:59.624610577Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: f0455027b648b67e2faaf9a3707aae3b94874e4dced92ae70a247c592eb0f8a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-17.0.0.tgz + version: 17.0.0 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.2-debian-12-r0 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r24 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.2-debian-12-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.2-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2024-02-27T07:17:48.175302827Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: c99aedbaeab59a833a31256da8c5f65fb5d324ae5f2803a15c0d8fa4ffa022f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.8.3.tgz + version: 16.8.3 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.1-debian-12-r11 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r24 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.1-debian-12-r10 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.1-debian-12-r10 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2024-02-21T16:13:52.245261577Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: f76517f75e96a40befa54fc7647d44780fdbf79d5d38776c653ceed588b829ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.8.2.tgz + version: 16.8.2 + - annotations: + category: WorkFlow + images: | + - name: airflow + image: docker.io/bitnami/airflow:2.8.1-debian-12-r10 + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-12-r23 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.1-debian-12-r9 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.1-debian-12-r9 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2024-02-21T12:30:48.188469259Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 166ff41eb9d9eca22633332c8e20a314766960a5d1e045a4e5d3242f2ced1c44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.8.1.tgz + version: 16.8.1 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r448 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.1-debian-11-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.1-debian-11-r4 + - name: airflow + image: docker.io/bitnami/airflow:2.8.1-debian-11-r4 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2024-02-14T13:31:46.501514254Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: aa7187fe796bf3674e07f3d73ab51c7bb418df7cd9b3f9b44ab468606f5fa6b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.7.0.tgz + version: 16.7.0 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r448 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.1-debian-11-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.1-debian-11-r4 + - name: airflow + image: docker.io/bitnami/airflow:2.8.1-debian-11-r4 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2024-02-14T10:53:51.091381412Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 1d48a1691d03bad2fe9e484c192e31b22933328aba3783cdbecd4b771b3ba796 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.6.0.tgz + version: 16.6.0 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r448 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.1-debian-11-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.1-debian-11-r4 + - name: airflow + image: docker.io/bitnami/airflow:2.8.1-debian-11-r4 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2024-02-09T11:40:11.800957853Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: fa6204ab4817fe4657504a4ddd42bb6cdf7e4c44075605f367e058f5f40845e6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.5.5.tgz + version: 16.5.5 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r448 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.1-debian-11-r4 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.1-debian-11-r4 + - name: airflow + image: docker.io/bitnami/airflow:2.8.1-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2024-02-09T10:19:55.504356437Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 719ede08ba146e8a638a0d3fb4d485d851f6643b252ea9de065281d7c6c74bf8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.5.4.tgz + version: 16.5.4 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r447 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.1-debian-11-r3 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.1-debian-11-r3 + - name: airflow + image: docker.io/bitnami/airflow:2.8.1-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2024-02-02T16:55:54.570851053Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 4dc714cd51595705bf58731a1f3766f30b25cb9d48a0e619a498c58d1257e54f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.5.3.tgz + version: 16.5.3 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r446 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.1-debian-11-r2 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.1-debian-11-r2 + - name: airflow + image: docker.io/bitnami/airflow:2.8.1-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2024-01-31T11:03:11.751428152Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: c637ae1a9d47f8f789fabbc73b8171a26f9afc19125e6cae39e77d9c6c499209 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.5.2.tgz + version: 16.5.2 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r444 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.1-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.1-debian-11-r0 + - name: airflow + image: docker.io/bitnami/airflow:2.8.1-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2024-01-25T19:41:42.602312581Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 954f970423dfb1fe155632df254e173ba989ed126bab4d8489f9afb017c34a5d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.5.1.tgz + version: 16.5.1 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r443 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.0-debian-11-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.0-debian-11-r1 + - name: airflow + image: docker.io/bitnami/airflow:2.8.0-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2024-01-25T09:38:45.1586289Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 7ed09bd861421fb38a9c52e353001fca6ad677fded6f3ab1f5f7d88f0fa770a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.5.0.tgz + version: 16.5.0 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r443 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.0-debian-11-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.0-debian-11-r1 + - name: airflow + image: docker.io/bitnami/airflow:2.8.0-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2024-01-22T13:22:44.334154761Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 29eb277064a74aec6e78b19c2af2a0bf6394c7eacc839bbe89173ae3cea48103 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.4.0.tgz + version: 16.4.0 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r443 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.0-debian-11-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.0-debian-11-r1 + - name: airflow + image: docker.io/bitnami/airflow:2.8.0-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2024-01-19T09:32:24.810974896Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: fea435d8ab35e8e6750d957416ce364b652f4364f6d9ad1230d01fdcd19d4f9d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.3.0.tgz + version: 16.3.0 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r443 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.0-debian-11-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.0-debian-11-r1 + - name: airflow + image: docker.io/bitnami/airflow:2.8.0-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2024-01-18T12:47:07.927470985Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 7d7fcf6dd3651dc841ffb613ca31a2ba851bacb46a832966b882b57709170e3a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.2.1.tgz + version: 16.2.1 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r441 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.0-debian-11-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.0-debian-11-r1 + - name: airflow + image: docker.io/bitnami/airflow:2.8.0-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2024-01-16T11:16:04.292901514Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: d00cd09ac732a2eb9cdae94fe56dd8123b8b681f3e481e8c163f37ec56211d3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.2.0.tgz + version: 16.2.0 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r441 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.0-debian-11-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.0-debian-11-r1 + - name: airflow + image: docker.io/bitnami/airflow:2.8.0-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2024-01-12T13:16:57.628743754Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: de04c95ee3af68a959f0d4c33a72547fbe19c34753ce899bcf83bc0b894bd59e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.11.tgz + version: 16.1.11 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r441 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.0-debian-11-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.0-debian-11-r1 + - name: airflow + image: docker.io/bitnami/airflow:2.8.0-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2024-01-03T17:40:39.816359784Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: d64a5f81fc4cef1a2b210624a29a11424c7b31827ca5e803473a4bce35c3d061 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.10.tgz + version: 16.1.10 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r441 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.0-debian-11-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.0-debian-11-r0 + - name: airflow + image: docker.io/bitnami/airflow:2.8.0-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2024-01-03T12:02:14.351292128Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 3a5474b7a324f60d8b797facbb743d1a25c4e70cc62109c2005d15193bdf8eb2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.9.tgz + version: 16.1.9 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r441 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.8.0-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.8.0-debian-11-r0 + - name: airflow + image: docker.io/bitnami/airflow:2.8.0-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-12-28T02:29:59.782304868Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: a779a2999d443b7680da5208b4f817d8ca1f93e4198a3cd5eece360d9edfb74e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.8.tgz + version: 16.1.8 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r441 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.3-debian-11-r3 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.3-debian-11-r4 + - name: airflow + image: docker.io/bitnami/airflow:2.7.3-debian-11-r5 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-12-14T18:09:05.47156709Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 56931fabe361b6a3a34f0efb779dd0f9255b92777fa5a2ccfd4746a3f43feb71 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.7.tgz + version: 16.1.7 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r440 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.3-debian-11-r2 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.3-debian-11-r2 + - name: airflow + image: docker.io/bitnami/airflow:2.7.3-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-11-24T19:28:51.393893166Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 9221f482078150fd41121eca5b42e181349ae235aaf79f9721fc7295da6bafe5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.6.tgz + version: 16.1.6 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r440 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.3-debian-11-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.3-debian-11-r2 + - name: airflow + image: docker.io/bitnami/airflow:2.7.3-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-11-22T00:21:53.363584517Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: de1a0155d77de8e086d26b8a91532ec186f541a8c92df2636bcce0a170e1660f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.5.tgz + version: 16.1.5 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r440 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.3-debian-11-r1 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.3-debian-11-r1 + - name: airflow + image: docker.io/bitnami/airflow:2.7.3-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-11-21T16:41:35.742218873Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: ec8e9760cf9bb62009b6d04b196b5ff4f1c8fc0d9975fc69c5eca9561281e25b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.4.tgz + version: 16.1.4 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r440 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.3-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.3-debian-11-r0 + - name: airflow + image: docker.io/bitnami/airflow:2.7.3-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-11-20T14:22:36.459940112Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: d3e4ea50c3bd8e6f75c42776a131c5f08e3e084f1ca77321519c1f0765b1bff3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.3.tgz + version: 16.1.3 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r440 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.3-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.3-debian-11-r0 + - name: airflow + image: docker.io/bitnami/airflow:2.7.3-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-11-08T16:22:39.665998764Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: c8021507bff9e92883fb52898dbc84388fef654b91afcbf9e7e1435fa11bf043 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.2.tgz + version: 16.1.2 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r439 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.3-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.3-debian-11-r0 + - name: airflow + image: docker.io/bitnami/airflow:2.7.3-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-11-07T03:27:46.835871714Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 65a2661ac92538d73ef0da34ae8a3c39801c8078359be66d8561d9cf0791efc7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.1.tgz + version: 16.1.1 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r438 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.2-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.2-debian-11-r1 + - name: airflow + image: docker.io/bitnami/airflow:2.7.2-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-10-31T15:32:55.398403545Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 01c64fd4e683d28c2782c882a2403c913a0882686881498488e7bea8cc29b42b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.1.0.tgz + version: 16.1.0 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r438 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.2-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.2-debian-11-r1 + - name: airflow + image: docker.io/bitnami/airflow:2.7.2-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-10-24T21:02:17.709638751Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 55cc8248ebe636c5517be9eee66175a9c0b1ea626464f2d35996dbc2a11f56fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.0.7.tgz + version: 16.0.7 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r438 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.2-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.2-debian-11-r0 + - name: airflow + image: docker.io/bitnami/airflow:2.7.2-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-10-18T08:44:18.483697685Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 86fa8caa78675039c976e87f1d3041c9b04cf3caf6e641d576fe7cfb534bfe24 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.0.6.tgz + version: 16.0.6 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r438 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.2-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.2-debian-11-r0 + - name: airflow + image: docker.io/bitnami/airflow:2.7.2-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-10-14T18:16:14.612813427Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: ba6194f98287cf2b28c8938fbfcb5fe58c709553d3bd3f89aa383b2af57be9cf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.0.5.tgz + version: 16.0.5 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r438 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.1-debian-11-r28 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.1-debian-11-r28 + - name: airflow + image: docker.io/bitnami/airflow:2.7.1-debian-11-r30 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-10-12T15:59:29.577560506Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 322a6b3de2e0ea1da4eb407c70c526c15d978ce7ef55a7c3a67ff1ce052d2f10 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.0.4.tgz + version: 16.0.4 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r436 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.1-debian-11-r27 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.1-debian-11-r27 + - name: airflow + image: docker.io/bitnami/airflow:2.7.1-debian-11-r28 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r41 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-10-09T23:24:34.540830282Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 00b993e75e215f7ede2be755881c23164686966a20662ee53eb04940c8f45ed9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.0.3.tgz + version: 16.0.3 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r433 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.1-debian-11-r27 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.1-debian-11-r27 + - name: airflow + image: docker.io/bitnami/airflow:2.7.1-debian-11-r28 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r41 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-10-06T03:46:31.265448178Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: cdea4cbcaf6217fc3c6e55cab4f3909e4a39b4e63c0f518c750e987c35555363 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.0.2.tgz + version: 16.0.2 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r433 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.1-debian-11-r27 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.1-debian-11-r25 + - name: airflow + image: docker.io/bitnami/airflow:2.7.1-debian-11-r26 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r41 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-10-06T03:05:25.686716837Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: d59d9dd0cbab6f91f4cb3a5653d2ba79f19fdffa70cfeb7486cb3c1d4f0bd813 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.0.1.tgz + version: 16.0.1 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r422 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.1-debian-11-r14 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.1-debian-11-r14 + - name: airflow + image: docker.io/bitnami/airflow:2.7.1-debian-11-r15 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-09-29T11:23:36.105133774Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: e4ed6fbf78159a381416cbd7f5b7e98d05e97a6c84b62d24af0200914c072bdc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-16.0.0.tgz + version: 16.0.0 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r422 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.1-debian-11-r14 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.1-debian-11-r14 + - name: airflow + image: docker.io/bitnami/airflow:2.7.1-debian-11-r15 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-09-22T15:05:06.731817337Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 839d5291d70f0f486b0ca3218c31e30f826db8cd903a51996c305b1b17b9e891 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-15.0.7.tgz + version: 15.0.7 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r413 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.1-debian-11-r2 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.1-debian-11-r2 + - name: airflow + image: docker.io/bitnami/airflow:2.7.1-debian-11-r5 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r63 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-09-20T11:36:47.548342055Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 365a44dd89800668c615afe6528bf757d4ada7589c0aea51e9e79ea9c8c0727d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-15.0.6.tgz + version: 15.0.6 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r407 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.1-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.1-debian-11-r0 + - name: airflow + image: docker.io/bitnami/airflow:2.7.1-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-09-18T14:51:14.916010008Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: bf0f8327fbf3d73a1f7d9d1a551ad76ab81378403a53181bdc23f982119120db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-15.0.5.tgz + version: 15.0.5 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r407 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.1-debian-11-r0 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.1-debian-11-r0 + - name: airflow + image: docker.io/bitnami/airflow:2.7.1-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-09-07T22:25:34.358340488Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 3c6fc8e036a292682fb86d13a246d5ddfd9068cea1983ba30cb44eba0a70ac52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-15.0.4.tgz + version: 15.0.4 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r398 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.0-debian-11-r2 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.0-debian-11-r2 + - name: airflow + image: docker.io/bitnami/airflow:2.7.0-debian-11-r5 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-09-07T15:39:14.457698205Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 66dc7cfe8a7a786a31156172c35f3c9ab1ac25b212bf071fab47e190973c4557 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-15.0.3.tgz + version: 15.0.3 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r398 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.0-debian-11-r2 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.0-debian-11-r2 + - name: airflow + image: docker.io/bitnami/airflow:2.7.0-debian-11-r5 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-08-28T17:37:18.090107277Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: f03ad9468a85c73a6d8bd7739787aacd7ddea7a42d29f8ad217d4313cd210483 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-15.0.2.tgz + version: 15.0.2 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r398 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.7.0-debian-11-r2 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.7.0-debian-11-r2 + - name: airflow + image: docker.io/bitnami/airflow:2.7.0-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-08-28T16:20:06.19056322Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 87bed73541910b8c1f50894616adf04d7b6b4dbded094ebc606da96b74dee4a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-15.0.1.tgz + version: 15.0.1 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r385 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.6.3-debian-11-r34 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.6.3-debian-11-r34 + - name: airflow + image: docker.io/bitnami/airflow:2.6.3-debian-11-r33 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-08-28T08:12:28.86985452Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: dbc8a0773188705ae2fccde487b30fad9a96b0182533499a5722fd7f5c1b8351 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-15.0.0.tgz + version: 15.0.0 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r385 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.6.3-debian-11-r34 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.6.3-debian-11-r34 + - name: airflow + image: docker.io/bitnami/airflow:2.6.3-debian-11-r33 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-08-25T06:37:37.275406665Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 1e449a1356b1cac3493cd0d84a0d39a7719ea5cde9c7d1af5311f34592a9802a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.4.0.tgz + version: 14.4.0 + - annotations: + category: WorkFlow + images: | + - name: airflow-exporter + image: docker.io/bitnami/airflow-exporter:0.20220314.0-debian-11-r385 + - name: airflow-scheduler + image: docker.io/bitnami/airflow-scheduler:2.6.3-debian-11-r34 + - name: airflow-worker + image: docker.io/bitnami/airflow-worker:2.6.3-debian-11-r34 + - name: airflow + image: docker.io/bitnami/airflow:2.6.3-debian-11-r33 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-08-17T13:03:54.045201971Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: a6159ef41474061e4e761731551d9c9e8d7210cd68e307c5fb968108f313158d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.3.6.tgz + version: 14.3.6 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-07-25T07:50:07.85640008Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: d90ac006e0d87cac34c7a03d48c16218f9caba4e52f9f2cf896e78800099bbcd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.3.5.tgz + version: 14.3.5 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-07-17T12:57:36.784593347Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 6d39fe5661434310f17f9be960fc24cac3a07284727473507d9931516e9427a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.3.4.tgz + version: 14.3.4 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-07-13T19:34:18.565644784Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 240d91388092240e75161e88bc8c1635b842d63b87a24a344932f03aa83751f4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.3.3.tgz + version: 14.3.3 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-07-21T14:34:36.374354767Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 920a6539b016a9bf811ddd02e782bb9d51851ca8f40898efb664165f64915af6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.3.2.tgz + version: 14.3.2 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-07-11T07:46:09.762016207Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 4ae5281a9e3ab6544a57587ecdfe08bbb2ec8b8906d74a09299e5bdafe7b6309 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.3.1.tgz + version: 14.3.1 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.2 + created: "2023-07-04T16:20:20.753679437Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 288e05bb9d8e4e0492d9b10b80cd4a6539299a7327a13f8f257132fb417174f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.3.0.tgz + version: 14.3.0 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-05-31T07:15:02.776720136Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 616e05c7c76149f47b746ec264eed0cf26449346682030674727e798ef90df24 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.2.5.tgz + version: 14.2.5 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-05-22T07:35:29.08123348Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 9bea45c12d20b79e003694e4e971db1455a6f766873f9af8ddef0c14f8a03ddc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.2.4.tgz + version: 14.2.4 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-05-18T16:57:55.340449097Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: ded286ed681d75b519347bf41c5dfe220b0831064371150e62c499f2dfc37407 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.2.3.tgz + version: 14.2.3 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.0 + created: "2023-05-16T23:44:16.508997696Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: f3dd1bd7b9d2e4a2ecf29d4bc0f9c5e16c5aef8082ce3778ea54334c97fc9a56 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.2.2.tgz + version: 14.2.2 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.0 + created: "2023-05-15T19:49:32.79646002Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 27cce002c3d55c3c647bc9a9e794747f104efe985594a07b50a4c4efbdedc4a1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/airflow + urls: + - https://charts.bitnami.com/bitnami/airflow-14.2.1.tgz + version: 14.2.1 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.0 + created: "2023-05-09T16:01:22.108320961Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: f08d730d88b48269b21692b102224b5fd1ac52f131d2ee6cc9ed6a3852cb2762 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.1.3.tgz + version: 14.1.3 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.0 + created: "2023-05-04T06:52:20.332008955Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 16b33e2d01f00c5fb8630042e8f128a5a214f1b7d0d4789c9f530cd3163f6ebb + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.1.2.tgz + version: 14.1.2 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.3 + created: "2023-05-01T14:36:18.188057711Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 9d7e6b6b1483e3d5ba4700076ec4d8e5f66b6de757499df4eb73cd4751569b5c + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.1.1.tgz + version: 14.1.1 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.3 + created: "2023-04-01T14:39:24.207008146Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 68110767706e09648fa3d1a9ec03ae938b9d7ede3b1fba3c2830d0bc9094b586 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.17.tgz + version: 14.0.17 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.2 + created: "2023-03-17T19:22:47.502742284Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: e14cb200d62de6b626aaccb2646c2753bdfa6360853cc10d068b4a79e3ac5f12 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.16.tgz + version: 14.0.16 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.2 + created: "2023-03-16T13:09:07.629343519Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: a2ec13c6a07145716607943fab5d3c91e3b4120da37d6e9677d1c47f5f42785e + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.15.tgz + version: 14.0.15 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.1 + created: "2023-03-08T12:37:22.701900722Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 728bfe55c427051525f2f36ea218136aee148af75efce9797d924962baf639c4 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.14.tgz + version: 14.0.14 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.1 + created: "2023-03-01T10:07:42.924100947Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: b44b50889ccd21cd14427c0a3977666e32a38f4b14c2193ff378cf7522376eb8 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.13.tgz + version: 14.0.13 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.1 + created: "2023-02-17T15:43:17.572792103Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: d7570de28e9f3c90ac31a7476de15a5a8a65e5618d24c417ddb1c45ed3e1fe8b + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.12.tgz + version: 14.0.12 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.1 + created: "2023-02-02T14:16:08.960290031Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: d1ded445d6fed8daa7b198fdf5b3e28d652721e0e355689ec98f3d9d5ee7aad0 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.11.tgz + version: 14.0.11 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.1 + created: "2023-01-31T14:49:28.987691097Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 2da4dc108bbfb392d6c2b971f88686bb4b7d5d246da7796abb0bc464d7d9101a + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.10.tgz + version: 14.0.10 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.1 + created: "2023-01-26T14:06:01.650891983Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 56d8c596ed83e79dc298dad1b6dfb7657b4ba5e59a6975d85e6c985ff28d91c5 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.9.tgz + version: 14.0.9 + - annotations: + category: WorkFlow + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.1 + created: "2023-01-21T02:19:38.932782755Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 46e8119a3b3614b7068e424150dc695615d09fb85a8e1c71d1d9642665f9184f + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.8.tgz + version: 14.0.8 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.5.0 + created: "2023-01-09T07:49:07.783545273Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 669d97e8b0728dbdac634166bc792ca5e6afa515a094024a1cdfbb05b3d5a836 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.7.tgz + version: 14.0.7 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-12-10T00:33:44.864844045Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: f024135c41d86b47ecc89c0ce9fc0e5eab6cefee48b463b049e7c2a8ed3217db + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.6.tgz + version: 14.0.6 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-12-09T09:20:22.961788181Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 3a675cd38be19ae169b876b38eaeb54b249f84fa46e8dbbca93746f2c17d6a6f + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.5.tgz + version: 14.0.5 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.4.3 + created: "2022-11-29T20:26:30.971478003Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 6c6ab91049250d7651477f53aa0609e926a71b08d237c4b9881f22978b1e6523 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.4.tgz + version: 14.0.4 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.4.2 + created: "2022-11-10T06:59:49.223166338Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: afa85688cf114ca74ce82842496398c41afffb2bb2a52f7e22b4e58a81c23db5 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.3.tgz + version: 14.0.3 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.4.2 + created: "2022-11-02T11:45:15.274741365Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: c737a75fe832d15b1dd5e40cd5b2a7af8bef522435ab481a9e1d2c0b118165e6 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.2.tgz + version: 14.0.2 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.4.2 + created: "2022-10-31T12:01:42.559223342Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 3220995cbddbe4c7fee6bf6f8d34924ad23e693514d3381623cb8641dad5f7c5 + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.1.tgz + version: 14.0.1 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.4 + created: "2022-10-28T10:53:52.565571052Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: b6532ee91faf6598b6ae37b8a880907cf7f82b5541dc3a9a9929a87d3fdf545c + home: https://github.com/bitnami/charts/tree/main/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-14.0.0.tgz + version: 14.0.0 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.4 + created: "2022-10-14T12:15:10.269701898Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: b5e03f52168e314436e9b1fd9024c9af3eb503ec4f338b6791d6709ca6f24e62 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.1.7.tgz + version: 13.1.7 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.4 + created: "2022-09-21T10:26:03.089700388Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: f12d8fb6c320c79d19cca8b83844132a09f7a0a7cdf9ec459de9bdc2f8fa086d + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.1.6.tgz + version: 13.1.6 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.4 + created: "2022-09-14T12:08:36.084929436Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: f960c50168024947ecf394f7f7545f776318c2eb2ebe9345012dd892e0cfa968 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.1.5.tgz + version: 13.1.5 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.4 + created: "2022-09-07T19:15:46.978724244Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: d914a0900e06c6ee3162ab5f40cdc3edeb289cc99d4a6ffe8a2ac7847df7f43f + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.1.4.tgz + version: 13.1.4 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.4 + created: "2022-08-25T11:24:19.674764415Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: f650c617e0e76bd3d6972ad44a4004561b2747645548da1eab3e315f6da87f1e + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.1.3.tgz + version: 13.1.3 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.4 + created: "2022-08-24T03:07:59.017870413Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 5db65b24a211ecd28e106cab1fdd3d7ae7f393c69c40b182633221a276512d12 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.1.2.tgz + version: 13.1.2 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.3 + created: "2022-08-23T23:44:45.422778102Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: a27a07ef5abb2e09741d5030952094f63de9c5ae17727fb28a205f584729a646 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.1.1.tgz + version: 13.1.1 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.3 + created: "2022-08-22T15:58:02.11458572Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: d588f5a0710776a0d55825a7d814dd75966b2ec59f4842fca1581f66af9d993a + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.1.0.tgz + version: 13.1.0 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.3 + created: "2022-08-18T02:06:51.845007532Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 286a0c68a577e602972ed2cbe569e4efae93452d06beb4c2d251f0a4712aad9a + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.0.5.tgz + version: 13.0.5 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.3 + created: "2022-08-09T03:08:01.660097298Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 7f2d04b575dbd53b312b89055713c59707c5f89bfaf46d19a82e998cbf7449b1 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.0.4.tgz + version: 13.0.4 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.3 + created: "2022-08-08T13:25:47.269822192Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 2b0028b1afa947b42dac8ea21fed66079053c72de1a4be2c32f076163f7d714c + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.0.3.tgz + version: 13.0.3 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.3 + created: "2022-08-05T07:28:30.528001708Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 05585142635d4a52de59cd567822005935e4ae9f38401cc50229473dbdee2353 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.0.2.tgz + version: 13.0.2 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.3 + created: "2022-08-03T08:34:58.940138562Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: cb766563567229aa9f2902fc813ce9fb458c0c003feca47dc7749e57254edca5 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.0.1.tgz + version: 13.0.1 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.3 + created: "2022-07-13T16:23:17.78163851Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 5f353b5fc340fc26ae50c79ada45c4afa8a8052e42d9833c795941a2a8d2e6d0 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-13.0.0.tgz + version: 13.0.0 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.3 + created: "2022-07-11T07:20:42.26808074Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 967299e691c304089d200d2d8fc73a0c063024e6c8cf81d69d11e154ffea1a7a + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.13.tgz + version: 12.5.13 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.2 + created: "2022-07-04T17:45:17.084605552Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 412297bd7692868a2fa316d11192a8c6ae615ee92ca947e4eb99e51fc3323d92 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.12.tgz + version: 12.5.12 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.2 + created: "2022-06-30T10:14:44.183841365Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: 36be36dec6cac3a808534a3636b7c1b4e1c501b8bc1ece351c76444a74fd5358 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.11.tgz + version: 12.5.11 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.2 + created: "2022-06-25T07:39:17.323951083Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: sha256:94e78a4d1c4962bdfa4793210ade1a593b1c67105329c32c90e0c0a90fe9c45b + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.10.tgz + version: 12.5.10 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.2 + created: "2022-06-20T19:04:20.903542104Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: sha256:a0ec52a38cb677d8727633fb71b232423fcea63881f5211c4e0196ad37662c0a + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.9.tgz + version: 12.5.9 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.2 + created: "2022-06-14T08:42:35.687661009Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: sha256:46c886051b141d68476e33e8aa739c1ca8f19b25a3b2c15ce283f1a7d05f5d01 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.8.tgz + version: 12.5.8 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.2 + created: "2022-06-10T19:34:28.196865852Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: sha256:cd549b8c3514fe74d803f2ec3cc68503b67642249cacb070e659f550ec3be626 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.7.tgz + version: 12.5.7 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.2 + created: "2022-06-08T23:12:46.423710591Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: sha256:58781ca36e3998fa27c52e215d12d114a88639d557753096d5f9e8df7d068e07 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.6.tgz + version: 12.5.6 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.2 + created: "2022-06-06T22:15:45.381575084Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: sha256:9ee37069abd336b3d38d029268951d179e9781d465d5a33fd6af65cca23a157e + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.5.tgz + version: 12.5.5 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.2 + created: "2022-06-04T21:11:51.191429301Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: sha256:d06282911b61fa1450fc05b3de865a68612bb9cac8b9ef81371827cdc8906c86 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.4.tgz + version: 12.5.4 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.1 + created: "2022-06-03T20:38:05.808567443Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: sha256:1bf3bdf70631a36819897b344f7d9db5322b80ae83b67ba5b13309afc3f06d52 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.3.tgz + version: 12.5.3 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.0 + created: "2022-06-02T21:16:44.504871072Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: sha256:d199a5bb06816409100b6e8ef9b91720edefea9534ebea818f44a365908f32c4 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.2.tgz + version: 12.5.2 + - annotations: + category: WorkFlow + apiVersion: v2 + appVersion: 2.3.0 + created: "2022-06-01T16:36:34.638110525Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Airflow is a tool to express and execute workflows as directed + acyclic graphs (DAGs). It includes utilities to schedule tasks, monitor task + progress and handle task dependencies. + digest: sha256:5e02e2310c728f441be1fe56d46c0ff70522317c43f43d2a2d33243d4f2c71c2 + home: https://github.com/bitnami/charts/tree/master/bitnami/airflow + icon: https://bitnami.com/assets/stacks/airflow/img/airflow-stack-220x234.png + keywords: + - apache + - airflow + - workflow + - dag + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: airflow + sources: + - https://github.com/bitnami/bitnami-docker-airflow + - https://airflow.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/airflow-12.5.1.tgz + version: 12.5.1 + apache: + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.62-debian-12-r3 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.62 + created: "2024-08-16T16:03:37.131748847Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 924d66cdecd84ce0b39ce2f3c11aa26d784c9f4df8503493290dbdb39084263b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.14.tgz + version: 11.2.14 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.62-debian-12-r3 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.62 + created: "2024-07-25T03:37:28.022725118Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: fb272086549c4a1bb2bc25bcdbd3e87fc1f3484b3a78bec9b33092903262b6c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.13.tgz + version: 11.2.13 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.62-debian-12-r2 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r5 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.62 + created: "2024-07-24T04:08:18.227755995Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: fdc348d9a1f032a8b693a8908bfa0b8c126514cdd74d8af86c5799c75c318c6e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.12.tgz + version: 11.2.12 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.62-debian-12-r1 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r4 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.62 + created: "2024-07-23T20:13:48.923705925Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: fe9a094cc3f31af57d2655728e52b9f55d6c5b367f130a196e65db0850294a76 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.11.tgz + version: 11.2.11 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.62-debian-12-r0 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.62 + created: "2024-07-18T11:14:38.66637732Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: aa9609db571127820eaa8bab4b7c72a7ed75bb6f9deaecacf367dc2da0ca2aeb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.10.tgz + version: 11.2.10 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.62-debian-12-r0 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.62 + created: "2024-07-17T20:20:52.942172346Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 7dc39c012211deaa44faf51b4cec110d486658e817a6e376ff58bbbd3899fe20 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.9.tgz + version: 11.2.9 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.61-debian-12-r0 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.61 + created: "2024-07-05T08:56:48.320562979Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 9605251fce06b20a163c9ad2da4a7a8a6965ad803da8110eb4d661c6772b8a73 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.8.tgz + version: 11.2.8 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.61-debian-12-r0 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.61 + created: "2024-07-03T18:04:49.17433771Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: ea9a049f6d79dfd4c5067fffb4a28811b729e98cc8d25c43584602f173ecbb73 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.7.tgz + version: 11.2.7 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.60-debian-12-r0 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.60 + created: "2024-07-01T15:32:23.370404262Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 73243ce9de9e5086dc3452183e1a99840ed427b74912fc162e5e97f0d1eb794d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.6.tgz + version: 11.2.6 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r6 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-06-18T11:34:40.757214014Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 589421268e32c1028a9d3e251d2b3bb008587497b1d5fc0a57176c2c2cd72e2d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.5.tgz + version: 11.2.5 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r6 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-06-17T12:09:04.9355575Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: e3f9722ffa22281da2a94df6738098d7353c11d8e4de29a41e33f3041bfab419 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.4.tgz + version: 11.2.4 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r6 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-06-11T18:21:39.173661074Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 441130c9a9a09ce2e43d34daca0c8eb9bc4bed5d1c54e7df909e8daaf9e9ca12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.3.tgz + version: 11.2.3 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r5 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-06-06T15:23:55.889703188Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 8e044c1491418f583ad9b6bc28259e3bdb644d66f07d317fcb0162a545dac7fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.2.tgz + version: 11.2.2 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r5 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-06-06T12:19:13.153052029Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 2c5c814ee9adee5f819cb93b0159913efe0d630ea0344b5b48927074bc7df1e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.1.tgz + version: 11.2.1 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r4 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-06-06T07:00:25.700544117Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 17fb0d31a205242cc4e57525535501e8ed274624acfb3c9218c2aa12260aaeb0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.2.0.tgz + version: 11.2.0 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r4 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-06-04T09:45:07.753879226Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: fa5ff50f951a7593b8d094ed8b0dfe8f3e650f7eccce85f8645ba459fd1e10f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.1.2.tgz + version: 11.1.2 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r4 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-05-29T14:19:43.028438204Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: d87a91889dcb5a14ca3a42763ed9bf7d86301b21d4e0d1b18d9d3edbfc4b11ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.1.1.tgz + version: 11.1.1 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r4 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-05-17T23:48:20.916140893Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: a2267230288593aaee958278a04517f6eb606733c3b4a57f0adb8c1b8e916da6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.0.6.tgz + version: 11.0.6 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r4 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.45.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-05-15T15:17:59.904475896Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 32871dd3cdb5fc0c2d844a3ef2868e0ca62e8902b8ee66294ccd9add273a90d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.0.5.tgz + version: 11.0.5 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r4 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.45.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-05-15T08:40:16.47671607Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 358245d5da930148b19736cc31ea900986e93c304cef0cd82906dd79a4c2c61d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.0.4.tgz + version: 11.0.4 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r4 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.45.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-05-13T20:04:06.484875094Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 268c4c7ae6aa12da3bc458ab0ee90e3fa4544e5b0e92c597861055d40a1eaf7b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.0.3.tgz + version: 11.0.3 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r1 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-04-05T16:58:51.10375256Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 7885a3061d9e62c5b54108501c033ae867607f62783c2693d8a22c6322feb3ae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.0.2.tgz + version: 11.0.2 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.59-debian-12-r0 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.59 + created: "2024-04-04T18:11:07.112516168Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 34e38637b3e6d97d54633a1e78607a41b339a31e7b208c682ffee2ceb098f57a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.0.1.tgz + version: 11.0.1 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-12-r20 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-03-18T10:13:22.269416489Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 4a31ae3841ecc52e515803a6dbff3a3270dfaa67164240a5368d594f7bff621a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-11.0.0.tgz + version: 11.0.0 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-12-r20 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-03-15T15:38:07.082029797Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: f5d19659a2b99dadac44488e15d65c279223d7e42feeeeb2dafc4e529ed5e685 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.9.2.tgz + version: 10.9.2 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-12-r20 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-03-08T14:48:10.609575225Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 763e1754c5e077faa13f30d63d156902052c8c8d2a1127c616fd4244e5c41c90 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.9.1.tgz + version: 10.9.1 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-12-r17 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-03-08T09:23:23.888205421Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: e7885a4da4f65f1cc172d8077af9a608935dc85a125239f0aadaadfb06b688e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.9.0.tgz + version: 10.9.0 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-12-r17 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-03-06T14:10:23.264918259Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 732eb47d652237ad16025d3305430a22d16b5f2e8369e2154fc2c9987a2249e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.8.0.tgz + version: 10.8.0 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-12-r17 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-03-05T12:15:22.615692998Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 745e402f5ffbce96f4b4111936b20a839bb48ff13191e924c8fd694d2673735f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.7.0.tgz + version: 10.7.0 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-12-r17 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-02-21T16:14:38.549728515Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: d60d90762314cbe7ea4dca00f8aceb9f953053c513382e6c99546cc3e59f82a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.6.2.tgz + version: 10.6.2 + - annotations: + category: Infrastructure + images: | + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-12-r16 + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r6 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-02-21T11:59:31.877096015Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 271c4febe4d35713c558bf1ab7af3252f9861ea87a9f1865f101fe4dacb77d44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.6.1.tgz + version: 10.6.1 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r10 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-02-02T18:25:10.7711697Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 533457f091a24510367ca02f93bea58cda24b36b65cb36ad37786e955e2ca07d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.5.4.tgz + version: 10.5.4 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r0 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r9 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-02-01T05:14:02.907439984Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 277339d06c23183501ca603998d5b6ba0b95098ce11ce532dd832ecc24043d70 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.5.3.tgz + version: 10.5.3 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r3 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r8 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-01-29T05:49:49.688477234Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 1c8cc5906137816ed9de100e7041bc5d8c98ad3b331a6eb9093f3e751b6a0336 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.5.2.tgz + version: 10.5.2 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r3 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r7 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-01-26T21:53:16.919342625Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 9a7ffb6707485d90cee31b64e13ef6dbc84df209da6137dbb2852ae1efe4dcf3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.5.1.tgz + version: 10.5.1 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r3 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r6 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-01-22T13:09:48.202899779Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 8fb96d722bc115bf98e0d657a52849ba038556d8fe457cf4fcd2042231dc50e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.4.1.tgz + version: 10.4.1 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r4 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-01-19T09:10:40.571514004Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 767ef43afe4ab09b207f9e558cbf2bd4c627bea6dbadf4596b1b2f1040de1822 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.4.0.tgz + version: 10.4.0 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r4 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-01-17T20:06:01.283050006Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 7acfeab02a93797882e5894a5a078e295f9bd9e6411473d293eab071d0e872f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.3.1.tgz + version: 10.3.1 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r1 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r4 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-01-16T15:09:01.773106313Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: e5fd5e432019d1815460f047d7def3ab22fb25f559afe46c26131c4a97867720 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.3.0.tgz + version: 10.3.0 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r1 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r4 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2024-01-16T11:09:42.4549128Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: f6ff63945bc30de17076c843ad5b2ac7f1c747263051edc658a54026d3c7ffa7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.2.5.tgz + version: 10.2.5 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2023-12-07T10:55:42.592342636Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 61935c9fb9a3cb48e9d94f3bc3aad7794d95a1cf52814c7472823c0f25304627 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.2.4.tgz + version: 10.2.4 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2023-11-21T18:08:07.324565167Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: fe6304559a0386e4c89e4f32966ac1bfb88cf637631578ae2a8dfed00e08dc53 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.2.3.tgz + version: 10.2.3 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2023-11-16T12:20:40.788329964Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: f42d5706c51a4bbab0d006402bb8815e0b2ec968c3a93d0fbac5b01c76b23e77 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.2.2.tgz + version: 10.2.2 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2023-11-08T16:25:34.647845556Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: c1852607f61b3a82c90fa4e6b49c70c106177020ebf933f0e99860a7517aa03c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.2.1.tgz + version: 10.2.1 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2023-10-25T11:05:54.586064979Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 3faefd64678391f1743888f9f2aa4ca64d109b1e8af621cf7d03acf1bdd4328c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.2.0.tgz + version: 10.2.0 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: apache + image: docker.io/bitnami/apache:2.4.58-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.58 + created: "2023-10-19T15:00:00.725629445Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 60653c7084e5921cdb7e076bf7f60509c3982d1b79050766cc63b94e364c7c84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.1.6.tgz + version: 10.1.6 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: apache + image: docker.io/bitnami/apache:2.4.57-debian-11-r182 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-10-12T15:00:55.078806345Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: c2ffb2258289a0c3a64f873ef0f70737d751394625ba21b3ba3e57057160e19c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.1.5.tgz + version: 10.1.5 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r5 + - name: apache + image: docker.io/bitnami/apache:2.4.57-debian-11-r180 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r41 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-10-08T20:37:30.282358686Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 0060cf9c3621ed187c2d0ab7a5a44fc5609680a89262678f89c8a2973c274d46 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.1.4.tgz + version: 10.1.4 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r5 + - name: apache + image: docker.io/bitnami/apache:2.4.57-debian-11-r180 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r41 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-10-04T19:57:06.792073304Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: fd98c3f9fd1d457c2a415bbfe1847dea2fedcd158ecc98314ed17991ecd0537c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.1.3.tgz + version: 10.1.3 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r47 + - name: apache + image: docker.io/bitnami/apache:2.4.57-debian-11-r163 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-09-18T10:03:15.667233151Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 709c91107f062235e5fd479d5b89e1c6e183582f63cc37749d65f53af42924e6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.1.2.tgz + version: 10.1.2 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: apache + image: docker.io/bitnami/apache:2.4.57-debian-11-r134 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-09-11T11:09:45.576895166Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: abbf34e90f2251ef65d3276bb8b15a82cfda748ce19ff59b86099f7b09145d22 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.1.1.tgz + version: 10.1.1 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: apache + image: docker.io/bitnami/apache:2.4.57-debian-11-r134 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-08-23T07:37:25.537619818Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: ce0f67a260dc62c7fc89fc243407b91afc07075442a785a59f21b804927030b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.1.0.tgz + version: 10.1.0 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: apache + image: docker.io/bitnami/apache:2.4.57-debian-11-r134 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-08-19T10:09:44.372786789Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 86556147632fb12f6f6c5833354e66dd62c54767d5574109bc22a63e9ebc8ec9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.0.5.tgz + version: 10.0.5 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r17 + - name: apache + image: docker.io/bitnami/apache:2.4.57-debian-11-r130 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-08-17T12:39:05.810563178Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: ff5686d1b7e3d358c285c154aed69e2468c7cdc0ac70fbb06da4a233d2373a90 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.0.4.tgz + version: 10.0.4 + - annotations: + category: Infrastructure + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r2 + - name: apache + image: docker.io/bitnami/apache:2.4.57-debian-11-r116 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r58 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-08-03T11:18:28.207920818Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 620e491b391485819b53fd3fbbcc402743051419109bb1fdfbb8ff76b0425fc9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.0.3.tgz + version: 10.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-07-25T21:31:25.842340336Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 045ccfdbf082aa3259420883e91f8434a979ae6ce4239424db478f306c18072b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.0.2.tgz + version: 10.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-07-25T06:10:36.928492653Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 4d6de56168d4e6aedd50d5447f2c9faab4f4caa0516fa0661c70d2fc91e4924a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.0.1.tgz + version: 10.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-07-18T12:26:56.269629931Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 9d78fca11cfa6676dd1cda4cf06b15e0409d102da5a3af5eb34b0b794fceef93 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-10.0.0.tgz + version: 10.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-07-15T09:19:45.625893317Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 8796a5f5f2af37673a849198d30c5e07346b57176bcc3ffa0a57b94ceaf94e44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-9.6.5.tgz + version: 9.6.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-07-06T14:43:18.752290107Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 4582a2860611e5753128aea32d6f0bfd44cb2e1a3904969144d533959190af6a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-9.6.4.tgz + version: 9.6.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-06-06T14:35:16.76607928Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 21499fb7c5f04c4cca740a5f2ec349fdbb86de48f5468c0d4389ae4cc44091f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-9.6.3.tgz + version: 9.6.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-05-26T16:06:05.148840174Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 4083aa262876356bab882b79f5fb3997219b602725bc76fe6afd18f3aa966236 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-9.6.2.tgz + version: 9.6.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-05-21T14:15:57.786311619Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: e15e72d6e215bb22fcb74daec913f30b60d12885013ab21a85b9b6a572ebc8e1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apache + urls: + - https://charts.bitnami.com/bitnami/apache-9.6.1.tgz + version: 9.6.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-05-09T15:30:55.879686708Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: d16f069bd9dcbacac1b2aa97596ffddc7aa330140a6edaaf3e2108f6f21e940e + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.5.3.tgz + version: 9.5.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-04-26T14:20:06.760151771Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 32726ef03cd29ff2ea45af21319e984fffb3ce1dfd9f1382d9ad796890fcd873 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.5.2.tgz + version: 9.5.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-04-25T13:27:17.757962235Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 2e0ce95d46fc3f4730dcf4dc35c12d28d3a70863d24cbd67cfb66eb78072c3b2 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.5.1.tgz + version: 9.5.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-04-20T13:39:12.100954736Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 69dc58524057fecf67274f001c344f077073adf19096d0de51d6f91e4ac8bc10 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.4.1.tgz + version: 9.4.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-04-17T17:16:15.79356167Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 946aea3c47bb7342651c7539cd355848cc7457c51d95c153945013d036e87d84 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.3.3.tgz + version: 9.3.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-04-14T18:33:18.413167493Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 4fdafa7be90e5ea4a524ffe67a23e97243228b45b5d42f2728a2c1b6e39d86c7 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.3.2.tgz + version: 9.3.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-04-13T08:29:30.487297443Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: c5bb9aae0ffb76a1c23710ac2f4558eb5b7cc0f6e683b762b3a34b765b77c14f + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.3.1.tgz + version: 9.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-04-12T16:00:36.784027318Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 65a2a85321b3a3dfdd35260163cdf1b8d17a47c0392d2373ebe3f17176da5853 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.3.0.tgz + version: 9.3.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.57 + created: "2023-04-06T17:14:19.624034247Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 2b370078e857292287255497fc0fc6a593a05f96752d8acd9dfeeb6425de1dda + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.23.tgz + version: 9.2.23 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.56 + created: "2023-04-05T14:47:22.199883797Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 826b56fb377e6ebbb9e59787aae4823f25d16afd7fb2a3f8ead763f6d281865e + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.22.tgz + version: 9.2.22 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.56 + created: "2023-04-01T11:00:16.788805512Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: ebf677b0c802616e41a6d0608be7f63c554dbf0a7dfad28f3405ed34b5f7992b + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.21.tgz + version: 9.2.21 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.56 + created: "2023-03-30T18:56:46.458898899Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 8753b7e67c435c27c7994b6a6b8f5ea30a28e341bfad93cbdcd27107c1fd2a50 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.20.tgz + version: 9.2.20 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.56 + created: "2023-03-18T21:53:34.747076016Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: dd406151bc701a379cdecf8f3cba03bbd1fde549b3d266c3d9a0a034291b45cc + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.19.tgz + version: 9.2.19 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.56 + created: "2023-03-08T07:58:25.003644185Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: ee61e9e9e910cb9f48c2a57e734302cdf4667b9d21c44063b40fafecd23bf371 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.18.tgz + version: 9.2.18 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.55 + created: "2023-03-01T09:56:22.984081368Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 1ebf061e4ce83ef9ce7aff7e1aa4806a49b894e630dac470961955982adb88c8 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.17.tgz + version: 9.2.17 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.55 + created: "2023-02-17T14:49:29.749761974Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 3a485b30760588754ea7e4403f1a0b673074986924f8e1e2b86137670b531d2b + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.16.tgz + version: 9.2.16 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.55 + created: "2023-02-02T08:25:57.529163399Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 595dbab575c235eec53c69a15e99eb170ffe3bb87b1294e98320c54b9ee07551 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.15.tgz + version: 9.2.15 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.55 + created: "2023-02-01T05:30:08.881027319Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 622cfe3c42ab9c11afd26fa8dd18d65cac5ddc0cae36ff2b839e33afe391e1c8 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.14.tgz + version: 9.2.14 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.55 + created: "2023-02-01T04:41:24.630239091Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 2967aa998b263d92766d2fcd79a5cc60908c2a80377d1cb90122604c9d6dcabe + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.13.tgz + version: 9.2.13 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.55 + created: "2023-02-02T08:22:24.103861914Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 11fbbd900d92e9d4f745a5aeb5a692b22bd21821dc40a7af6f1223ff277a560b + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.12.tgz + version: 9.2.12 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.55 + created: "2023-01-17T16:44:58.799581365Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: bce11f61f41215dd6e330fbbc21bdad8025365e8f93fcc238ea2258e06cab6bf + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.11.tgz + version: 9.2.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2023-01-05T05:21:30.137442856Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: b11066dbfc675e63bd857e7532508b3b88e174ec9bbfb759503221e052b7626a + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.10.tgz + version: 9.2.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-12-10T00:25:49.492840908Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 5a54c6e7c71e5290a5ff9189ea7ba27c5b8d73fd5107329e0d04001a6095b860 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.9.tgz + version: 9.2.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-12-07T08:04:45.617364643Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 8af3a49f6e023d0c6a0a2f36d90d5cf1302e9c54097b21c9a52720adcafcf328 + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.8.tgz + version: 9.2.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-11-07T07:53:15.378198727Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 60439384c30d8460a8d83e8e34383457e3fb49fbaadf5d23f22fb70be17d9d0b + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.7.tgz + version: 9.2.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-10-26T15:55:38.063405302Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: b85896614782c32126526f90bf5e19a3eb185ad4efafc3d22ecc6175edb6699c + home: https://github.com/bitnami/charts/tree/main/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.6.tgz + version: 9.2.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-10-08T07:43:36.117388004Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 0203d2fcc52c8cb4ee633bcb52ea69a0229ccb012980ac5920cfed1662fe7b78 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.5.tgz + version: 9.2.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-09-21T10:12:52.076419527Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 30d402acc0cd520228af961e2fbdcd3f2866d9a784306399e432c9564c5237db + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.4.tgz + version: 9.2.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-09-08T07:31:47.578444658Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: c32020e0912f9f86c2181f5cc6e8af81b2b728600dd99216087a3d95c8abb615 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.3.tgz + version: 9.2.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-09-01T12:16:58.642833687Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: 599788fbc3f26a7e7f60dbcd6e8fe23fdfd400350405ab5774cb5fea61e9e517 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.2.tgz + version: 9.2.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-08-23T23:06:05.320991348Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:04617da3b6f05366afaa62106530aa1c2e20034832b56142b5ac5e55afd0eb86 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.1.tgz + version: 9.2.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-08-22T18:54:14.086334095Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:4f98ce7c38f8b7a8a747bd62619e613c3ae7f614261d8db4ad41b8ad7d7287c1 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.2.0.tgz + version: 9.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-08-09T23:14:06.599637324Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:68eb936729eacddda79c6ff51e2ce176fad3fb4737f6c8a9e2cdc65dddb1b612 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.18.tgz + version: 9.1.18 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-08-09T12:15:21.481250774Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:5076d953b8061daa9e9cbb2c4993d1de680362288ac0cda0a6abdbc6f0951f15 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.17.tgz + version: 9.1.17 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-08-04T22:00:44.879579446Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:d61790eceefa513798ee9e057f16b3a81b96372dbb5ae0f6bf3b60aac7babc7b + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.16.tgz + version: 9.1.16 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-08-03T10:39:17.681556174Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:772eb5763678deddfa221093a9eb090111cd5c3c80b55970d5f98ac577feb8d4 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.15.tgz + version: 9.1.15 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-08-02T10:02:01.314680514Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:d36cb9967f66d6b2b37596b37b3cab160758643929998f7d1048277e3657fbe6 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.14.tgz + version: 9.1.14 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-07-04T17:49:15.712764318Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:1be3b4bd00a0af959bd3ac83fe8cf88c2f2bdb4b737a83be893019334b34bd85 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/bitnami-docker-apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.13.tgz + version: 9.1.13 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-07-01T11:02:19.10112001Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:eae9c6a1ecd076c6c4f4b692a40d0756e61e35aaa9af3142c9f8495efc5f9299 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/bitnami-docker-apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.12.tgz + version: 9.1.12 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-06-10T19:45:28.634102022Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:4a015f682214a4a0169b397f43140038e3f730edc08fb201fc44ef5286445ab4 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/bitnami-docker-apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.11.tgz + version: 9.1.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.54 + created: "2022-06-08T23:41:38.406154715Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:ac330fb5aee6fa4dfab1028f0734ee6da565a97fbe90fe224b6ee236b39496b5 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/bitnami-docker-apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.10.tgz + version: 9.1.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.53 + created: "2022-06-08T10:48:30.998772571Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:227fc3e477c4fb020888822456ca2ea5caed130da2154ed38b79c009374b1a2e + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/bitnami-docker-apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.9.tgz + version: 9.1.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.53 + created: "2022-06-01T20:10:48.497730974Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache HTTP Server is an open-source HTTP server. The goal of this + project is to provide a secure, efficient and extensible server that provides + HTTP services in sync with the current HTTP standards. + digest: sha256:29a14e8c3df9e89747428c1e76c6b8946c5bc34f464253111842e728afc07355 + home: https://github.com/bitnami/charts/tree/master/bitnami/apache + icon: https://bitnami.com/assets/stacks/apache/img/apache-stack-220x234.png + keywords: + - apache + - http + - https + - www + - web + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: apache + sources: + - https://github.com/bitnami/bitnami-docker-apache + - https://httpd.apache.org + urls: + - https://charts.bitnami.com/bitnami/apache-9.1.8.tgz + version: 9.1.8 + apisix: + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r8 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r40 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-07-25T04:55:30.378316635Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 078cb80642fde40f6c9572b805bdf763b96ff046e0d015c0a567026cbdf36f61 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.3.9.tgz + version: 3.3.9 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r7 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r39 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-07-24T04:06:53.633162094Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 2d70471df0798cac2a286a4ab44536f56f44a20accd0b6887ab2a95e3518d2a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.3.8.tgz + version: 3.3.8 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r6 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r39 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-07-24T06:34:40.946449303Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 1cd2fbc25f06eb9f09889b3d39f9d4cef2fbd8626f064ae64993a4bc144550e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.3.7.tgz + version: 3.3.7 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r5 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r36 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-07-16T13:18:26.815735392Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 6d4047bdcff8c97a1ae94dfd8a3334b5ac47bfbbc3c0b2f7e09756eceb81886f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.3.6.tgz + version: 3.3.6 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r5 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r36 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-07-16T10:30:03.950657911Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 0f3c10f968ac21117b77d32a37cf5e18efbb606599cedec92cd616607d2443dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.3.5.tgz + version: 3.3.5 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r5 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r36 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-07-16T09:06:00.958565172Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: f259b671e2ee9674c5242b428a5e29d6404294aca830c7a34f0cef0267ec529d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.3.4.tgz + version: 3.3.4 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r5 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r36 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-07-10T07:52:28.345667548Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: c16d17a06d34eb52950bb6031ed3a82317abb5661a06a0801a589430b744e75b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.3.3.tgz + version: 3.3.3 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r5 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r36 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-07-08T10:37:43.659034891Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: aa23c4ae17034ddea56bb009130159a50aa81b7e0ad63486e5392a08f51932f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.3.2.tgz + version: 3.3.2 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r5 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r36 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-07-03T07:34:36.517465913Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: b5bdaa75988e57c46aa71f954a852e5c92bcd46bfa9d33b3eeb5a42a9c0f339b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.3.1.tgz + version: 3.3.1 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r4 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r34 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-06-28T14:18:17.138747773Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 6467a08620d0d710d14aed0811e2f4489b6222842b71292eac4afcb0ec96cd0f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.3.0.tgz + version: 3.3.0 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r4 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r34 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-06-20T08:02:30.484552378Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 17a70d782b3033fec5842ba1d7749fafeeb0028594f89f6ab86dcd0000d2edae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.2.5.tgz + version: 3.2.5 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r4 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r34 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-06-18T11:32:43.323729757Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 04ec21fb1c3b30aa2f1972c39a875234aa065757da01944d5ee171507e65173d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.2.4.tgz + version: 3.2.4 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r4 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r34 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-06-17T11:45:04.072308261Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 302f0a162b785b1d48f55908b3028948f13df365dfac24b32e6df8fef4aeb205 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.2.3.tgz + version: 3.2.3 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r4 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r34 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-06-06T15:29:39.99469487Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: df157311fab362bad55f740814e4789506352859a8fa6e44884e8745e4f6d504 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.2.2.tgz + version: 3.2.2 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r4 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r34 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-06-06T12:10:06.728959927Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: cb94fa67519f20fac4498b99666431bb84269e536bb5843b6dec76ba3c73be60 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.2.1.tgz + version: 3.2.1 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r3 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r33 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-06-06T08:24:22.673586902Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 298c655c3af0df7c8d5644e96002d32208799f0a9b0070738a9d91503542fb65 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.2.0.tgz + version: 3.2.0 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r3 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r33 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-06-05T14:18:24.638995367Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 52d7482b1934d7d29e388a7edc1863df7d6f95e112f211e7de8a271b8e260248 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.1.3.tgz + version: 3.1.3 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r3 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r33 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-05-23T11:09:23.167243895Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: fb6017789fbe77830f821cc34549af5808941805f245aa8a1cb82c4e1854dc11 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.1.1.tgz + version: 3.1.1 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r3 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r33 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-05-21T14:24:12.925728768Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: e232789f4d9d682b50a1533276ca106b451c1f4b7ed983ee9e0d1e94055a8287 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.1.0.tgz + version: 3.1.0 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r3 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r33 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-05-17T23:49:41.141491923Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: e1ad47b05c9546ff2c795144b843d38986efab117e1b3901b40ae366bcf8c445 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.0.6.tgz + version: 3.0.6 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r3 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r33 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-05-13T19:41:48.72511994Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: a03e18aaba002c89329089dac9c610670a534d259f6a649c75a381c24d582cd4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.0.5.tgz + version: 3.0.5 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r2 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r31 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.2-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-05-13T07:43:49.808574572Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: dbf512ddfc40e255e6b257d3684357292657317dcebb08d1367bf68ba19effa4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.0.4.tgz + version: 3.0.4 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.9.1-debian-12-r0 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r28 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.9.1 + created: "2024-04-24T17:22:14.632110422Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 95b6c8519c3a1cd4888534e9d1ff6c348f1119aec2fd2c11999f3d9decc79af9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.0.3.tgz + version: 3.0.3 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-12-r7 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r21 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-04-09T08:12:05.979570195Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: e0e3dd10089c5a93248792dab15b9606df109b28e6ccd2b3c6753f3d33b93c30 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.0.2.tgz + version: 3.0.2 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-12-r7 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r21 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-03-22T08:11:23.323705677Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 5c0c55129abf161fb3d62090493badbb48adf6c862aaa748f842b9a7012fc83b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.0.1.tgz + version: 3.0.1 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-12-r7 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r21 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-03-19T07:44:01.985234637Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 54285aee334bc5fdadaffa0614d79dc31c2da92b008051b8a211bad0dfc09210 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-3.0.0.tgz + version: 3.0.0 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-12-r7 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r21 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-03-06T11:47:58.41179227Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 7d5bf1f223889fd7511ec7845d938cfd7344867b5f0442ca99b1ea7094b514df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.10.0.tgz + version: 2.10.0 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-12-r7 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r21 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-02-27T15:34:49.633429211Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 761eb1a36730fc112009693a2709930d4de500d7439275da8aadeb752e0c492e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.9.0.tgz + version: 2.9.0 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-12-r7 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r21 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-02-21T16:09:17.737792672Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 230f798bea27e5f973dd5b314c677288482e458c1533bddb97c5dd709f1e00c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.8.2.tgz + version: 2.8.2 + - annotations: + category: Infrastructure + images: | + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-12-r6 + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-12-r21 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-02-21T12:31:42.599622057Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: cc0edd5297ec735f65db1a0ddf37964a159311129a61871a3278e6c2313afc94 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.8.1.tgz + version: 2.8.1 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r146 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-11-r6 + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-02-16T09:42:09.199584504Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: f8fed998e1711b977680de14a84b55045a99a78c4b48c2c8ff9d36b62f2f5199 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.7.0.tgz + version: 2.7.0 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r146 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-11-r6 + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-02-14T17:31:33.436555057Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 28b8092bd044cd18dffc11da73fdf65c6d60a84853c0791c99a665902aa09714 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.6.1.tgz + version: 2.6.1 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r146 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-11-r6 + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-02-13T17:06:06.827566128Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: f30c58b50a2c5085067584469fd85de1a77b3ba5f695498e7ebd36a245da88b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.6.0.tgz + version: 2.6.0 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r146 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-11-r6 + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-02-09T12:43:12.396088024Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 20205bc7a6c32e65794f090873e96df512baf749a838dda1ba955814e629923d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.5.8.tgz + version: 2.5.8 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r146 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-11-r6 + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-02-09T12:28:28.872051416Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 449ece46029bac80fead3e2b9a3de4af289dfd708868988935dec32b9b82d78c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.5.7.tgz + version: 2.5.7 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r146 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-11-r5 + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-02-05T12:15:12.734885716Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 894c67d4f92160a70c23ecd9c611db2016731563263f98ff913276f953765b70 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.5.6.tgz + version: 2.5.6 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r143 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-11-r4 + - name: apisix + image: docker.io/bitnami/apisix:3.8.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-02-01T05:20:45.846054751Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: fda18de83515dc4ab1e1c3ea52ab43c59fe107ab02e1dc90d7fcc061ddfea694 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.5.5.tgz + version: 2.5.5 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r143 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-11-r2 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-01-31T12:21:07.25633035Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: cc85f2044529db677243c2c66dfff6bf864d3b73798a4eba977c139ca5702e50 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.5.4.tgz + version: 2.5.4 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r143 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.8.0-debian-11-r2 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-01-30T02:49:30.360407654Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 35973dd7fed8bfc953b0bf8d7e43360158408745adccf99a4c5caca577cf6ab4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.5.3.tgz + version: 2.5.3 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r141 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.1-debian-11-r3 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-01-19T11:01:47.332022038Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: f89bbb0bb54085eed3347ac62116dae9c6af7715ec6ce50ed8b262b8f8f4d70a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.5.0.tgz + version: 2.5.0 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r141 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.1-debian-11-r3 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-01-18T02:34:38.931613476Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 50d450b60ddaa6889e3b0361db0a6f12dfb6c12ac653a61b27994698bba65d72 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.4.3.tgz + version: 2.4.3 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r140 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.1-debian-11-r1 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-01-17T10:48:18.880868681Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 7501212e1086250c20df9ff80f464890606520341a74abf19494e3dff66fcf10 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.4.2.tgz + version: 2.4.2 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r140 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.1-debian-11-r1 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-01-17T09:27:51.725075879Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 94f329e4185e41d324abd7af7f6d4d3d3b3c7b96ccb2834c9a31dfce6cbc2f0e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.4.1.tgz + version: 2.4.1 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r140 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.1-debian-11-r1 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-01-16T15:12:37.792397482Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 020c4eb574e52aae6ba26fdb7372493d2adb0da8c042a3ecca515d8f4a441db8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.4.0.tgz + version: 2.4.0 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r140 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.1-debian-11-r1 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-01-16T09:45:23.391053562Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: ef16c84eed4e2a362cd27bc7f5fb8745ae5ada9bc6447dd9ed0c56b5850dce91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.3.0.tgz + version: 2.3.0 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r140 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.1-debian-11-r1 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-01-15T11:22:36.60623392Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 3f2387708f2511ab62bea5a53d21e5976a10d94e1617b39bedc544015f226849 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.2.9.tgz + version: 2.2.9 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r140 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.1-debian-11-r1 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2023-12-31T18:09:47.080907138Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: c17a85715919c03205ad7928f42a08c41a9c6b8ac062bedf0687cddba03008f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.2.8.tgz + version: 2.2.8 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r139 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.1-debian-11-r0 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2023-11-21T18:11:28.186801227Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 6fffb1fe78ff6cab388332bba73684117800d356731bf17adf679f6f11a8ac56 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.2.7.tgz + version: 2.2.7 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r139 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.0-debian-11-r16 + - name: apisix + image: docker.io/bitnami/apisix:3.7.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2023-11-21T05:44:44.114585941Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 859c35f7bafafcc8d93c5bc046ef38beb55758c43b037ea43f242ae2752f7f98 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.2.6.tgz + version: 2.2.6 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r136 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.0-debian-11-r15 + - name: apisix + image: docker.io/bitnami/apisix:3.6.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-10T07:54:37.377136124Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: d202ee1bcf261ad73bea6ca7c4c6f74b8316d5f45663f0f5e44838e33766d421 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.2.5.tgz + version: 2.2.5 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r136 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.0-debian-11-r15 + - name: apisix + image: docker.io/bitnami/apisix:3.6.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-08T16:26:35.152267Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: de4420b8e55c84f52d06f16e04e5f81bc8580f8fb19d76da9236967eca8cf37e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.2.4.tgz + version: 2.2.4 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r136 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.0-debian-11-r15 + - name: apisix + image: docker.io/bitnami/apisix:3.6.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-06T14:53:45.664910129Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 2bd40cffee8e3d7305498cd78ea2eee5fcfa3adccfb866445aeee21ca1990662 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.2.3.tgz + version: 2.2.3 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r136 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.0-debian-11-r15 + - name: apisix + image: docker.io/bitnami/apisix:3.6.0-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-04T09:04:22.096021606Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 48ffddc252b4e6a6ae1fe5c3c75797668a5b37eeac3eb0830e16d305b8800926 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.2.2.tgz + version: 2.2.2 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r136 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.0-debian-11-r15 + - name: apisix + image: docker.io/bitnami/apisix:3.6.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-04T08:23:35.466610399Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 7bc3062a822c71d425da8327e99bad4ee9867c6da501768289a78cd229bf8e13 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r135 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.0-debian-11-r15 + - name: apisix + image: docker.io/bitnami/apisix:3.6.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-10-31T15:30:53.715134977Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 2f93d77f50e04b4cc75d21a8678b7311caad06678983b4fef2e9b4df4585f032 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r135 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.7.0-debian-11-r15 + - name: apisix + image: docker.io/bitnami/apisix:3.6.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-10-15T10:11:50.346610389Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 5c01370228582627249292cacb52dd4e8dcf444eb8e4a88c994cde6fff151c13 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.1.4.tgz + version: 2.1.4 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r98 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.6.1-debian-11-r97 + - name: apisix + image: docker.io/bitnami/apisix:3.5.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-09-19T10:29:08.465722121Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 65b419f9c08fe0b814858f3af8ad77f4643493477129271e7ce4eb11d2506ae9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.1.3.tgz + version: 2.1.3 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r98 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.6.1-debian-11-r97 + - name: apisix + image: docker.io/bitnami/apisix:3.5.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-09-08T13:47:16.61290987Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: f1e4496fa57f1fc3dcc0434eadae9a0c086fe7f5691922a4c60a552821cf890e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r98 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.6.1-debian-11-r97 + - name: apisix + image: docker.io/bitnami/apisix:3.5.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-09-01T22:50:33.161888767Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 4a982e34b2fb8815eeb46c9f673c7f031c900b0f1ec5e02f5d5aba1c15b5bc9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r87 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.6.1-debian-11-r86 + - name: apisix + image: docker.io/bitnami/apisix:3.4.1-debian-11-r28 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.1 + created: "2023-08-29T08:09:35.15915496Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 1c0e56fdd0a5c889ecab8d66a6180180cfaf34c62184a1a84db0ef19bb286b65 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r87 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.6.1-debian-11-r86 + - name: apisix + image: docker.io/bitnami/apisix:3.4.1-debian-11-r28 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.1 + created: "2023-08-19T10:29:47.491016273Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: ef4a79e292223c7a540914dbff9a2b2f4e5b5b3f59a5d8e4d92f43d4c485a8a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.10.tgz + version: 2.0.10 + - annotations: + category: Infrastructure + images: | + - name: apisix-dashboard + image: docker.io/bitnami/apisix-dashboard:3.0.1-debian-11-r82 + - name: apisix-ingress-controller + image: docker.io/bitnami/apisix-ingress-controller:1.6.1-debian-11-r82 + - name: apisix + image: docker.io/bitnami/apisix:3.4.1-debian-11-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.1 + created: "2023-08-17T13:04:55.913763277Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: fce4f9c35017dd0e91b047be6e8a86b59c70fe54c458741b4a295f09b88668af + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.9.tgz + version: 2.0.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.1 + created: "2023-08-08T13:31:15.484039047Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 21e2fb7d786a150911d01fe3390e52da38938731d33d803b1624aa7f57f2c88d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.8.tgz + version: 2.0.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.1 + created: "2023-07-25T06:24:14.764602223Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 006847502bb1b637f24bd8a72f1a55d9e2f8664b65181a35a2781507e9f20ef4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.7.tgz + version: 2.0.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.1 + created: "2023-07-20T15:59:24.728380527Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 242749543c44c1c5b2bf7df451de1731d8f278812ede407a2d362fbf0714ef33 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.6.tgz + version: 2.0.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-07-20T07:14:37.470915635Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: d915c62bbee9a1b4cf71d530a89f5347b241a34b39ea4d45f4a54deb729ef090 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.5.tgz + version: 2.0.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-07-15T09:44:23.348275641Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: a224bb89cc025bf6a86b351dd45074a3165f603d0b9bf7c171ebbb17cbaf2f7b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.4.tgz + version: 2.0.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.0 + created: "2023-07-12T19:02:34.530939044Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 99dbe99ea15a0883a0bb412477a226e3cd008632bbe788e6d5820c9e17eeae9d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.3.tgz + version: 2.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.0 + created: "2023-06-29T09:15:36.380641615Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 9.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: dd9b457daba0826daf1ced0f509b89ea440cc20519a4c1c1db027790c12420fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.2.tgz + version: 2.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.0 + created: "2023-06-22T17:25:24.388752767Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 9.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 514edb3ef3f1f28ae3760b6be966fe5e4e6f05a99d430a0982292560c7f853b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.0 + created: "2023-06-19T15:22:25.56365684Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 9.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 9b4de39cab642f96261ae2c9b09f4d70586bffa7240fca22d57c971fbc1bdded + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.0 + created: "2023-05-23T17:10:07.684962307Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 8.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 6d63419462408c9c3db0d3089b1771a8fb90810b8266019318c63c09e5c73fa6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.0 + created: "2023-05-23T13:57:06.819784203Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 8.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: 4fcbbc51d4de6080be3ae0d1748d7c6ff912da373c8ce594fae041002360686f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.1 + created: "2023-05-23T11:32:47.307277545Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 8.x.x + description: Apache APISIX is high-performance, real-time API Gateway. Features + load balancing, dynamic upstream, canary release, circuit breaking, authentication, + observability, amongst others. + digest: c1e00a05767a8fb76421346cd225db6abe464eb4b42910ec2efb16e517a9a052 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/apisix/img/apisix-stack-220x234.png + keywords: + - apisix + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: apisix + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/apisix + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-dashboard + - https://github.com/bitnami/charts/tree/main/bitnami/apisix-ingress-controller + urls: + - https://charts.bitnami.com/bitnami/apisix-0.1.0.tgz + version: 0.1.0 + appsmith: + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.34.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.34.0 + created: "2024-08-13T11:09:44.238458715Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: b69394b4e98f6ac026f5f5b1b8ea1c7f1dbb9cc49bd5b258375863e37d1642cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-4.0.0.tgz + version: 4.0.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.34.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.34.0 + created: "2024-08-02T21:38:14.765740233Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 82abe8d8f19113ba2ef51a53cfc931cc6c3f8ab8aaa818250b7e68cd72961a7e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.21.tgz + version: 3.3.21 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.33.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.33.0 + created: "2024-07-29T14:59:14.548875459Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 4deeed9a6527edbf5e9e0abb20e5ce6f0dff2973c2be5bec5f4162967d564205 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.20.tgz + version: 3.3.20 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.32.0-debian-12-r3 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.32.0 + created: "2024-07-25T05:43:48.253516651Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 02084093954aad89de198159d9497da94c930b9f86f8dc670951b8513d13c221 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.19.tgz + version: 3.3.19 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.32.0-debian-12-r2 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.32.0 + created: "2024-07-24T05:42:40.69636533Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 51200ccec074f6246f7a4a0d5e8f2f76f4912c164195b202af3001011f36b58c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.18.tgz + version: 3.3.18 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.32.0-debian-12-r1 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.32.0 + created: "2024-07-24T06:34:56.353339656Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 4edaa99d3ca592f19b9851a003d593453577237de88fb0b193c1a977aa15181a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.17.tgz + version: 3.3.17 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.32.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.32.0 + created: "2024-07-18T18:16:50.510631567Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 8be04299f89ae6a141a705eac5a45e1f91ba5b7aef16b441b6ac293726f18a70 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.16.tgz + version: 3.3.16 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.31.1-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.31.1 + created: "2024-07-16T11:42:36.405293312Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: c447314d574d4f6c1ebdf94fa9fce1d45dc2f978d35a893c5f7eac310e350842 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.15.tgz + version: 3.3.15 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.31.1-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.31.1 + created: "2024-07-15T09:40:50.331705166Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 753d70e9293137435c9b586e34d05ea4dcbe851c199cb27fcef305780f7efe70 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.14.tgz + version: 3.3.14 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.31.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.31.0 + created: "2024-07-12T23:22:50.237663363Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 5cdba5c9bdb2b58325a5be64d3fd08c26c306fab61d005227afc578ffac4168d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.13.tgz + version: 3.3.13 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.30.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.30.0 + created: "2024-07-08T14:55:50.727552638Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: a2372122482d04ba5a53542fc4ff17949de619768b054922e86255ec8d11dfe9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.12.tgz + version: 3.3.12 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.29.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.0 + created: "2024-06-28T07:37:07.402992812Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: b95daaeb9c9bdccd47ca393d03dbc3c8ba5847c17617f6c63eafa5a5a90f882f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.11.tgz + version: 3.3.11 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.28.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.0 + created: "2024-06-26T08:00:17.170805774Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 1184ce3b0476d2807006f046d92a415c75982d12c6a3b136a837fc473f97ce7c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.10.tgz + version: 3.3.10 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.28.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.0 + created: "2024-06-18T11:45:55.485278171Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: b1f242cec7691878754f431d32fc63075160ccd3cda5c7a3adb9531f87b0372e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.9.tgz + version: 3.3.9 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.28.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.0 + created: "2024-06-17T16:55:22.972620011Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 6b890b31b41d28c255d05685fc5a069277c26a21f333f1dc43429f576e01539c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.8.tgz + version: 3.3.8 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.28.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.0 + created: "2024-06-17T13:04:51.023178241Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: d53141ea2c42ba29e7db0a2a752461573bbe78d49f04a51ca51f87a430dbffc0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.7.tgz + version: 3.3.7 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.27.0-debian-12-r2 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-06-13T07:29:30.475958278Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 34a81413ea2f60003582ae72362be65dc3f3880a078c1b1636e44f91b65139bb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.6.tgz + version: 3.3.6 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.26.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2024-06-06T15:31:02.371276357Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: bdc4ecfbbe7e1da88ccaf6621991437052b00f94d0cd54b96176dfa4295145e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.5.tgz + version: 3.3.5 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.26.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2024-06-06T12:21:10.104941423Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: f85ebd9987fb4073bfcf0ab42f6c77fe8af73af07503a4c963d414531ffb3f9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.4.tgz + version: 3.3.4 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.26.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2024-06-05T14:18:14.787306883Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 190d5fd3f4b43b60951bef9fe800758f7a01a955889225c7c55d698b19035cc5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.3.tgz + version: 3.3.3 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.26.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2024-06-05T12:12:20.982133648Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 0bbb7d933774f3431c33565ec6bfcb170cbca72654ea2fff9df97828f31d8b62 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.2.tgz + version: 3.3.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.26.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2024-06-05T09:45:08.061472822Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: e81f02e4e2ea98f5638c87d886e7ce36715f8b0ef368fb0c5a5c814eb06384b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.1.tgz + version: 3.3.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.26.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2024-06-03T09:36:58.148198033Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 660b62b9c7680ebf1b9a868cbe5cf6a1f630ce0f239ce4fcc63a1aa32b4f652e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.3.0.tgz + version: 3.3.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.26.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2024-05-24T06:53:03.072575815Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 5a44f246249d706ce7623de8805f54529c320cb7a22a1a9feafc98de3d91e88f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.2.2.tgz + version: 3.2.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.26.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2024-05-22T14:06:08.652218186Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: a563f12b252a2a381f4315eb7d45f1648ab33b03ed891f54b19db6d4d98b19f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.2.1.tgz + version: 3.2.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.25.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2024-05-21T14:20:19.494388125Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 8251991b2c86045c2f4bf85aacc64a9b962b81935226e6f349e2d4e0b257cfe0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.2.0.tgz + version: 3.2.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.25.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2024-05-17T23:59:03.477863306Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 2448c418bed61f7a48a79789f1bd665f513af0b39ab9d80db9d57b8fc7e9261a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.10.tgz + version: 3.1.10 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.25.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2024-05-16T13:40:08.120411197Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 3e8fc6d9c655bc4afb4b3d54424bde1c3833969e0a28005ed63c629e7b960dad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.9.tgz + version: 3.1.9 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.24.1-debian-12-r1 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.1 + created: "2024-05-13T21:00:30.337102744Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: ef2f97a3f624badb720dab5d108d656741c8272449a9f8de1ac01df511041b76 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.8.tgz + version: 3.1.8 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.24.1-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.1 + created: "2024-05-13T16:48:25.82976144Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: a1ba4b1376e10fc7dcb17314a56b650a7d98ce1ba63a756c2747885782fce6c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.7.tgz + version: 3.1.7 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.24.1-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.1 + created: "2024-05-13T10:52:00.796963362Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: e64f0d8fc276755b9c6577b83b995aa25591f71242c30d0341378450fc6a38ae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.6.tgz + version: 3.1.6 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.24.1-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.1 + created: "2024-05-09T08:51:04.04488994Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 69b6015299027e719c2147d2e9079ff51c8ba66130f23074b3f2794e0069d214 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.5.tgz + version: 3.1.5 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.23.0-debian-12-r2 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.23.0 + created: "2024-05-08T04:06:08.693365683Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 57f2c3f763825784aff7452baba26ba2afb9d3a58065c194a55f3277a4089225 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.4.tgz + version: 3.1.4 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.21.0-debian-12-r1 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.0 + created: "2024-04-26T06:04:01.433693988Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 8f34d46568dfd70cde1ab64838e78cf07211e91c14d5b14bfa74009d9fb71459 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.3.tgz + version: 3.1.3 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.21.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.0 + created: "2024-04-17T16:56:09.16408089Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 55329813ffb5cfea7e85ce13ad0d60fbc1849c252afb87089a160246e8fae1fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.2.tgz + version: 3.1.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.20.0-debian-12-r0 + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.0 + created: "2024-04-10T11:11:11.072654749Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 85579b2245fcf2479362bbbba9dcabcee95df91831edd65cada3cbb50df3bb23 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.1.tgz + version: 3.1.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.17.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-04-10T10:21:29.776167808Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 05d3ab14702f54200570e6e15bf8bc6e1ef33c9e4c199c60bcb8046977aceb96 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.1.0.tgz + version: 3.1.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.17.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-03-22T10:16:52.307574197Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: da925be4d5db25d11e7c1208c31571bd3533bc75fec803ada4e198f2e94d7045 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-3.0.0.tgz + version: 3.0.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.17.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-03-21T18:47:15.10279347Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 4357268176e3c4814c4ddba29ace945fcb48ed425fd009a4d8196505da181af9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.8.5.tgz + version: 2.8.5 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.17.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-03-18T09:21:45.83906087Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: f71bf7c4b0ae5e21eaeb23b368a58452ecbaf8f14cde8abb9a80de160ac95f38 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.8.4.tgz + version: 2.8.4 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.16.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2024-03-13T11:19:55.441191422Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 4c60205ccea44c78a55c6253b34fcc15a297f117644432aefbc0488e1d6ece21 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.8.3.tgz + version: 2.8.3 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.16.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2024-03-08T16:27:00.464233952Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 856a6ff5a8f2e6d57fcacb264c1558e453a49a5f1e8de3e1dbac9c1d9ce95a70 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.8.2.tgz + version: 2.8.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.16.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2024-03-07T19:08:18.776295392Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 5118836bfdb46dccf2b493875f1db4d672a2c65fd1323e869fc153a92925d17a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.8.1.tgz + version: 2.8.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.15.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.0 + created: "2024-03-06T10:37:32.369803772Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: aa7d35f1596c31f31af7e26206be2a654dcc7bcf5ec08462640a4d3150d79371 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.8.0.tgz + version: 2.8.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.15.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.0 + created: "2024-03-04T21:45:42.115839929Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: c0e949f5482e8daf2738e950eb30cb26186db2209b1b7354f914565b061758f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.7.4.tgz + version: 2.7.4 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.14.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.0 + created: "2024-02-28T15:35:51.103964889Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 793d76660493a318ef93d5167a73e9d431fdf1b9751eaa536ca24c4bc1fdfaf1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.7.3.tgz + version: 2.7.3 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.13.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.0 + created: "2024-02-22T11:06:20.829178196Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 649691b73a21eda3f778836f2f388792085a17356aa758b2d403721a3422bd3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.7.2.tgz + version: 2.7.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.13.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.0 + created: "2024-02-21T13:06:48.199188914Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: b900f48cd71a8167a572affd1e7c3340e397e3cb0b29148fbff69cf8727860e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.7.1.tgz + version: 2.7.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.12.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r109 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.0 + created: "2024-02-19T10:40:16.275392094Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 3b65f9504c282774075a03fdebc472ddcb89f9bf31cfecc1d9812b2e8c21f9cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.6.0.tgz + version: 2.6.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.12.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r109 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.0 + created: "2024-02-16T12:33:47.95937447Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: c756e0c70d247c9eb742bc98671b34a2238fa338148873a38c3d3503f59c6d1a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.5.2.tgz + version: 2.5.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.10.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.10.0 + created: "2024-02-12T07:25:42.318221223Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: a07926e6f099bb9e99b94d6bb76c7b84a9cbce96741d07ba53f4359e36d589fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.5.1.tgz + version: 2.5.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.61-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.61 + created: "2024-02-05T12:49:40.033896264Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: d1b66cc2207a7bfc453b6dfcbcc1d57b1e1623ee9b53a1435f24d63e4fa29947 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.5.0.tgz + version: 2.5.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.61-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.61 + created: "2024-02-02T16:36:21.211458469Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 035745656eda7c1ddb952552768d2ef4fdad93f7d6cfbdd7a8aa6257fcfd3800 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.4.4.tgz + version: 2.4.4 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.61-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.61 + created: "2024-01-30T15:28:20.352852135Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: ef7824e2b9ffbb9720bbb8bfaa8a96a02ccafeb408fe6796e03153b352d8cf37 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.4.3.tgz + version: 2.4.3 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.61-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.61 + created: "2024-01-30T11:31:17.50331517Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 881b8a0ab1fe773615835415a7b168cdb7054f17d6e53ff3d87b99cff8dedcd7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.4.2.tgz + version: 2.4.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.61-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.61 + created: "2024-01-22T11:16:57.433290529Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: a53e39474a1487e51dafb55dd2d1ddee17e756a603208fb524c08de1417fec2c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.4.0.tgz + version: 2.4.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.61-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.61 + created: "2024-01-19T11:34:58.859925064Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 55d73e3701221ec6105c33b0be2d011edcd9206a7239dbebce78f60c9c13e8dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.3.0.tgz + version: 2.3.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.61-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.61 + created: "2024-01-19T10:31:57.36799441Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 158a58a11f8a184b3ffddbba92555ea9347c1e3672ea9a85644719b45eb93b04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.2.2.tgz + version: 2.2.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.60-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.60 + created: "2024-01-18T14:32:13.604177707Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 29f11198c109a1c24eff6767b8863f61e0174d1364de37602da33e9c6ed6c102 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.2.1.tgz + version: 2.2.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.58-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.58 + created: "2024-01-16T15:30:07.86596661Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 2acfc721db284c54e37fd10b55d96e0bc8abcae9b467980d0aca1825f42e41f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.2.0.tgz + version: 2.2.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.58-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.58 + created: "2024-01-12T13:16:42.122935435Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: d5d817a3f7341a583c901aee0ea668a4bfd995c4c203e4679c9104d9b7e97425 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.14.tgz + version: 2.1.14 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.58-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.58 + created: "2024-01-08T17:30:24.911821745Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 0519e32a431d5227b1e6a4c9add562515a0356b01250eb02299986a40df55193 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.13.tgz + version: 2.1.13 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.57-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.57 + created: "2023-12-22T12:40:58.826644718Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 2a00a6de264b05313f2fcd3337cf31265b25a8957db83e6308ca1957b3f62ff4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.12.tgz + version: 2.1.12 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.57-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.57 + created: "2023-12-20T16:48:34.112422863Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: d7fa88f0353692797e3c738ceda65b76d0c14790879e339273225102b111da97 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.11.tgz + version: 2.1.11 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.56-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.56 + created: "2023-12-18T16:25:56.433041073Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 0ea2abd89a4ec8bca03a7cad599d68abfeeb29e400d5516837321b214a8e177f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.10.tgz + version: 2.1.10 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.50-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.50 + created: "2023-12-14T09:21:17.73541963Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 30ef1c3c6517535b840d183798f0c892215b84201c6e7b32240124b0cbb510af + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.9.tgz + version: 2.1.9 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.49-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.49 + created: "2023-11-30T12:01:09.58845303Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 72c82c439791533080db3fcdf661e40a1f19ccecc0d622dd9541a4358d0e11de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.8.tgz + version: 2.1.8 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.48-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.48 + created: "2023-11-27T08:47:56.663093821Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 28e48b28a7301e50057d901240863cc1d217ebd8783b16b7974f50046a5f124d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.7.tgz + version: 2.1.7 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.47-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.47 + created: "2023-11-25T11:24:53.411919906Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 1b806fa40551837495682d02e0d679536aecdee50b497e335b0f7d62dc238af3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.6.tgz + version: 2.1.6 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.46-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.47 + created: "2023-11-22T13:51:44.852547894Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: ab1c7d6f0ea98349a87ce18420fce566b2293ded9599d4a120d7ab5bb1d34e92 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.5.tgz + version: 2.1.5 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.46-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.46 + created: "2023-11-21T18:21:12.633524668Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 92f845e24bd5c526d2a57e4621f5debd9e57cb932f9972a1c0966dc4d79d1eb8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.4.tgz + version: 2.1.4 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.46-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.46 + created: "2023-11-20T13:30:39.482689244Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 6475ab61b38e21777b80b04b96800892078445dfe91603cc7749d82867b3ed08 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.3.tgz + version: 2.1.3 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.44-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.45 + created: "2023-11-16T08:59:27.941413603Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 57632747d774efc4af97b76f1c57d07f3893b42a366cacee58e046b674d928be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.2.tgz + version: 2.1.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.44-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.44 + created: "2023-11-10T12:03:21.542486167Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 053321eedb30e7b6f4add48ccabeabc4d393f2a1e04b5191f30ca1893402cfd5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.1.tgz + version: 2.1.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.38-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.38 + created: "2023-10-25T11:05:01.067030829Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: f271b0505edbe99020b0d2584eceb71ad8877e37aed710c80719c2d6e6c21e40 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.1.0.tgz + version: 2.1.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.38-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.38 + created: "2023-10-12T16:08:52.087331734Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: cae9c329a96424718c4abd5336186e8825ee8f894bd91237e01565e676f1a9a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.0.6.tgz + version: 2.0.6 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.37-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.37 + created: "2023-10-04T11:16:11.975074108Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 1fd8ecc80604a15d5194e918686971fc30489b994d043d4c0abe8f8a0f92978e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.0.3.tgz + version: 2.0.3 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.37-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.37 + created: "2023-09-29T20:01:16.747981306Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: bcd235529dd7ff61823f792855fd06e902b6fb5fa9e4f902acb0eb699856ceb7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.0.2.tgz + version: 2.0.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.37-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.37 + created: "2023-09-25T15:33:45.358875028Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: b257e1c0eb4c6869314dfac4b3444b5d05a525262a1a8345d5d2a938689bb343 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.0.1.tgz + version: 2.0.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.37-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.37 + created: "2023-09-25T08:34:17.593580209Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 74d6f1ce038a6ea9eeabf8a1170c3c7ef4b0fb1b006d27383eca04a5d8d4ec8c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-2.0.0.tgz + version: 2.0.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.37-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.37 + created: "2023-09-22T16:03:17.691219548Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 0f5a829828ded595a17ca14501c11203c0d9d0e433d4f5ca300e3b6e8bf166ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-1.0.5.tgz + version: 1.0.5 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.37-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r63 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.37 + created: "2023-09-11T14:28:59.63392345Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: e060153ee6d009a84a6f6f050253da13d3383f813768c956ba10a4844a79177e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-1.0.4.tgz + version: 1.0.4 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.36-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.36 + created: "2023-09-07T10:59:08.470645033Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 165eea779bdb2430e23143240c195c819077f7e3d66200ffda36ae8c92e90923 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-1.0.3.tgz + version: 1.0.3 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.36-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.36 + created: "2023-09-06T17:46:31.717736657Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: fe5443435f5ed0afa52b23bf7729479b0970b9013e548d8fbd1a2704c0834811 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-1.0.2.tgz + version: 1.0.2 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.35-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.35 + created: "2023-08-31T00:55:33.488661613Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 6b6aa778652c291947a256318af1f595243199305a175e32d22c6b621836f81c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-1.0.1.tgz + version: 1.0.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.33-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.33 + created: "2023-08-28T08:20:37.924039607Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 0a883577a7f0054a3a1e1d2e3cb5bc6c095dec4d8a271d766019612d263cb4f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-1.0.0.tgz + version: 1.0.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.33-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.33 + created: "2023-08-25T17:56:52.800883261Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 422a3f0a7f12277b19069223f808696a0fc31037f2f6217aab66d225c4fe0d9c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.4.1.tgz + version: 0.4.1 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.33-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.33 + created: "2023-08-24T14:27:00.132047443Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 4ebd0f1a672d7b0ddee5b1527343634c557f9241758d6f62a3ea2785478c93ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.4.0.tgz + version: 0.4.0 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.33-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.33 + created: "2023-08-19T11:21:52.353475333Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 5001674705d5eaebe584a2efcb4257c2df1104e6401ff460850eaa77868c5c0a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.16.tgz + version: 0.3.16 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.33-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.33 + created: "2023-08-18T00:29:59.40645773Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 0d2e9875810358d4f5212c155e3e613634cf8bc649a2067cacbbb173e544ab84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.15.tgz + version: 0.3.15 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.32-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.32 + created: "2023-08-17T13:34:24.8229051Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 0c643312973946f44e82d93ed0df377a31d3c49fd5e69b29d1447cb8dc94d86c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.14.tgz + version: 0.3.14 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.32-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.32 + created: "2023-08-11T12:48:13.979399004Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 5d7fbf4386ab2dcf6e9961e02a5d797959ee82e3a914c4d2e6e9dae1a3b52251 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.13.tgz + version: 0.3.13 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.31-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.31 + created: "2023-08-10T10:06:50.514957939Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 57650016df0c8971ad85718b0275f1da35e60a13a4d8dfee070c06c824310d0d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.12.tgz + version: 0.3.12 + - annotations: + category: CMS + images: | + - name: appsmith + image: docker.io/bitnami/appsmith:1.9.31-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.31 + created: "2023-08-10T09:06:56.622832182Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: b0bd2449c3de8cac558ecbe3a882eba701ad6707c3d857b7d0c6f572ca0f96df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.11.tgz + version: 0.3.11 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.25 + created: "2023-07-13T14:45:16.396450379Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 625733a245a3f7b58fbf22f94d9bec0201b59c2d3bfa803607cdd6f5bee6d350 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.10.tgz + version: 0.3.10 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.25 + created: "2023-06-29T16:01:11.630298378Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 0f024a19b0c70613a98d10ab4180957f719541da7025e8a357dc6a061ffc23c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.9.tgz + version: 0.3.9 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.23 + created: "2023-06-28T07:28:08.876392441Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: c0b7cb1ab82a6388258ca8d553374b697d071fab3729b75f6696635343aa9f9a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.8.tgz + version: 0.3.8 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.21 + created: "2023-05-26T20:07:57.458088205Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 03c09938f0210cee8790409ccdc1cc06aa9d30bd6c3087febb2398639a64b11f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.7.tgz + version: 0.3.7 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.21 + created: "2023-05-22T15:41:56.692365698Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: bff021ec785676742dbceece420213f1bc18d97d66400abd646c2cd6fff7e3b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.6.tgz + version: 0.3.6 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.20 + created: "2023-05-22T15:43:28.879300894Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 8f3d63eb1322e9b1da604f8701465a200de403901881724324ccd505ac7d6a3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.5.tgz + version: 0.3.5 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.19 + created: "2023-05-21T20:36:38.034672767Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 487c358b9556f4c9b298ae80adfcf20a8f24f59aa1c216e5d0da298288235fd2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.4.tgz + version: 0.3.4 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.19 + created: "2023-05-16T21:31:27.166905277Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 3bb42f3b14be4f40a35256f23a6a53025534ea50395b807313fd07b21681a43b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.3.tgz + version: 0.3.3 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.19 + created: "2023-05-12T17:43:07.848173362Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 7c80676a25f6e596800eea75412ffdf39af71be8fdee3d3e4d065e97fe4d2094 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.2.tgz + version: 0.3.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.18 + created: "2023-05-11T07:27:14.486797708Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 4788fec6fb9c23d71ca4d5d3ed648a7db5903cd2b53de56756dc015dc5bc50f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/appsmith + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.3.1.tgz + version: 0.3.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.17 + created: "2023-05-09T15:32:58.035656862Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: c361a375a38dd2c1b66614f4ba8be224059cae5ca02386066704d599754ec63f + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.2.2.tgz + version: 0.2.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.17 + created: "2023-05-01T10:21:05.353539143Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: f26173e05d3d6922e4c474821f1607e53e6db8e019a39909cfc47c3a304b56d6 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.2.1.tgz + version: 0.2.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.16 + created: "2023-04-19T21:27:35.601347814Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: f9283327d3730f93f3da6c074931b7ca1e774874628be438f70a1a666fdc1ba2 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.23.tgz + version: 0.1.23 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.15 + created: "2023-04-06T19:03:29.197080607Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 488d4a5dbe2a0b9da57cb070246117392f2c731b4cbea71894588fbcc9c82d66 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.22.tgz + version: 0.1.22 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.14 + created: "2023-04-06T16:11:12.603582842Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 52f03ca7831bc69db08d2613184ccebfad0e7ac4b37b16782eebdfba8034655f + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.21.tgz + version: 0.1.21 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.13 + created: "2023-04-03T16:34:13.51496169Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 13b94453188b078ca24ea14c2fb42ae117dd153a35d744a8feb0ce79482fce3d + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.20.tgz + version: 0.1.20 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.12 + created: "2023-03-18T22:38:18.404181372Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: cfe7b664a91918e6f6264d95c52c52f05fdc1c5815013927b8b116a1f97b6add + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.19.tgz + version: 0.1.19 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.12 + created: "2023-03-13T10:43:02.104851448Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: a54aac356637b4d1a2210eb7e39719005bafc6e8b5bf7e6d71b41198e1c44659 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.18.tgz + version: 0.1.18 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.11 + created: "2023-03-10T07:47:56.392393424Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 1115694f18964742547a08460e1a45097f6d8c9451ba7586cd56a47d4cac835e + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.17.tgz + version: 0.1.17 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.10 + created: "2023-03-08T19:27:08.283871136Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: f68a7b29f322d210749192d29daf8c605c3e9fc43866d66be3f5957e0bc04b24 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.16.tgz + version: 0.1.16 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.9 + created: "2023-03-01T13:52:34.132924667Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: f0e661f5838830d53e53da26dde6b47a21962e090631c79371a6b3348dfb13a6 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.15.tgz + version: 0.1.15 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.9 + created: "2023-02-27T15:16:36.723653736Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 0b293b9b23c1c69bd3582ba78bcb36b02ab93f0a40f758fddcf814e569c1cf93 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.14.tgz + version: 0.1.14 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.8 + created: "2023-02-23T11:48:10.73696879Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 64679371673e891815539bc48314690949ee84c53d65ab2baee8f3baa28f955d + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.13.tgz + version: 0.1.13 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.9.7 + created: "2023-02-14T11:34:31.886340148Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 825a350f113092be209f9110e145f30f92b2fd6527538de135646f9a0834bc7a + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.12.tgz + version: 0.1.12 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 1.9.2 + created: "2023-01-06T18:58:12.442105264Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: f8562488ea577778b08b4d81a13a4f21d2bf948734cf0cde5babc88ea648207d + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.9.tgz + version: 0.1.9 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 1.9.1 + created: "2023-01-06T08:26:35.006048415Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 131a60b38e338fdda0670e7b3b81bca97226cffcb0275f2417d54d5c7097c1f9 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.8.tgz + version: 0.1.8 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 1.8.15 + created: "2022-12-28T19:41:39.797068469Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 7f2c086373c7c0d45deee8449cb6a3419427034d67da7c517302b9c27c86f908 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.7.tgz + version: 0.1.7 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 1.8.14 + created: "2022-12-22T10:50:44.202030706Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: b46ab41ef331f8a9739a0692c8f36e6073e5834df03c96ed6ba97997ce2fd259 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.6.tgz + version: 0.1.6 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 1.8.13 + created: "2022-12-19T11:34:23.131011302Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 3fdf51f29bc685b61c361e742af51672916b8cb201cf2406dae8d80b6f870c74 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.5.tgz + version: 0.1.5 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 1.8.12 + created: "2022-12-15T10:43:21.579672177Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: fe986121b976bda10a67b769e26fe80037c752c8938dec0b6e6bfe7392d73a17 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.4.tgz + version: 0.1.4 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 1.8.11 + created: "2022-12-01T23:43:27.710551653Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 2748d782977cfe9689a0b37cd34849b13fe4ef8b55ee044a0d4cc10d1befd64e + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.3.tgz + version: 0.1.3 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 1.8.10 + created: "2022-11-30T19:28:29.062352943Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 21b4b7f5e2653fb32f54f3138b5f1a3ac7638c6e2752f91fc7dc9152f5bc19a6 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.2.tgz + version: 0.1.2 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 1.8.10 + created: "2022-11-29T20:34:41.289423805Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 6dce025ecaef2fd29627b85b85fd32972db42a82da263d73664cecb18d1241e7 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.1.tgz + version: 0.1.1 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 1.8.8 + created: "2022-11-25T16:16:21.757817611Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: mongodb.enabled + name: mongodb + repository: https://charts.bitnami.com/bitnami + version: 13.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Appsmith is an open source platform for building and maintaining + internal tools, such as custom dashboards, admin panels or CRUD apps. + digest: 8079e2e8248610ea716961d1d9d365d5ea3b175a43de3943b862a6169303d787 + home: https://www.appsmith.com/ + icon: https://bitnami.com/assets/stacks/appsmith/img/appsmith-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: appsmith + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/appsmith + - https://github.com/appsmithorg/appsmith/ + urls: + - https://charts.bitnami.com/bitnami/appsmith-0.1.0.tgz + version: 0.1.0 + argo-cd: + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.12.1-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.41.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: redis + image: docker.io/bitnami/redis:7.4.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.1 + created: "2024-08-19T06:27:49.432663496Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 3bfe3696cd07ecfed0d86c2a4eea33030f089f6115e2d61296b5dc24f3ede7f0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-7.0.2.tgz + version: 7.0.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.12.1-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.41.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: redis + image: docker.io/bitnami/redis:7.4.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.1 + created: "2024-08-16T19:13:25.39877871Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: dc2486c218e7832a14f8ed1650756e513c206943b8d1018273989d80a2661ed3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-7.0.1.tgz + version: 7.0.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.12.0-debian-12-r3 + - name: dex + image: docker.io/bitnami/dex:2.41.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: redis + image: docker.io/bitnami/redis:7.4.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-08-13T10:28:48.784254076Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a58e537b4d1485a03496acfe5bb0d5b8b0cd9547372dde572df56364752bafa2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-7.0.0.tgz + version: 7.0.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.12.0-debian-12-r3 + - name: dex + image: docker.io/bitnami/dex:2.41.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: redis + image: docker.io/bitnami/redis:7.4.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-08-12T07:24:29.961717359Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 1e169695830bbeedd18ed63655dbfe4ab3724b27efc877aa99410bad684f32e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.12.tgz + version: 6.6.12 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.12.0-debian-12-r2 + - name: dex + image: docker.io/bitnami/dex:2.41.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-08-09T15:28:58.618671554Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: eedfda29b4a7220c75a2e7422529a8b46d35777ef4a48d1e17b5cd879d5c8359 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.11.tgz + version: 6.6.11 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.7-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.7 + created: "2024-08-05T10:27:45.682650608Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 48bb27135e953595c21908c52284a02410cc74f8d81fbc8124ee042ebc76a793 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.10.tgz + version: 6.6.10 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.7-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.7 + created: "2024-07-26T07:20:55.430604129Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a38c1ba3b9a90b71dde54d849f2d13b66fc41f98920f91d78fe948755cfac154 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.9.tgz + version: 6.6.9 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.7-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.7 + created: "2024-07-25T03:36:16.875816268Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: c2cc974a12793092426e9e31d3671ded16e5e83604689e31399122f92b18afc7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.8.tgz + version: 6.6.8 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.7-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.7 + created: "2024-07-24T15:13:57.646663421Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 7052b5327809b6f68ff0a3ed0235fc9aa32f057a98e1fde0fdcc208bbf67e22a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.7.tgz + version: 6.6.7 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.6-debian-12-r2 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.6 + created: "2024-07-24T14:29:39.365841051Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 1a793fc9eaa52a5cc3d38261069289f021e738a1c88749197048abaea7078cb3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.6.tgz + version: 6.6.6 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.6-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.6 + created: "2024-07-24T07:11:28.541908737Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: ced22e949cfb460e58919ec8f1dc275ad39d6a99ce48ae6c63693b0a572d0731 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.5.tgz + version: 6.6.5 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.6-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.6 + created: "2024-07-23T15:00:14.616816336Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: dcc5b7b7b799c42c23d386f2bd371d27b3ea9d4f729405e137f638ebc77e651a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.4.tgz + version: 6.6.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.5-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.5 + created: "2024-07-18T08:53:29.552546366Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a68ac681826769779505c2f850d450c7ad5fc5e2926876e76069af3765e9013c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.3.tgz + version: 6.6.3 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.5-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.5 + created: "2024-07-16T07:48:24.694260667Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a153f6014a300313411107ee807210ff4ff3f764ef3f5f3b2544de7dd2f3a3fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.2.tgz + version: 6.6.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.5-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.5 + created: "2024-07-15T20:04:11.806943467Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: e5cc1095e26e1ff9907ca99096c9c717a8bf81f7e16cd152b1c14f2ff4268525 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.1.tgz + version: 6.6.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.4-debian-12-r2 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.4 + created: "2024-07-12T16:24:11.522096371Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: f442d4cc012aa5ddf16b6dbbc0154a0cd763ea452d01f55fe6ef2552ff178780 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.6.0.tgz + version: 6.6.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.4-debian-12-r2 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.4 + created: "2024-07-08T10:43:30.619223286Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 7e43a8909c4b7c35fc6fae79b7fe7abbd412352ba3a507064819146cc1f2dc68 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.5.8.tgz + version: 6.5.8 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.4-debian-12-r2 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.4 + created: "2024-07-05T11:28:13.44871693Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: d60649faa0b3ced2b171e0533a1961021c57872226dfe5d6ed4677d19f6a88cc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.5.7.tgz + version: 6.5.7 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.4-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.4 + created: "2024-07-05T09:36:00.987534606Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: aa60feaf7b6ac7a7f75f40aeba8fbf3e49f887935b3b5a223ef0f2d71d3f6a78 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.5.6.tgz + version: 6.5.6 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.4-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.4 + created: "2024-07-05T06:45:33.054336601Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: ff0a11b2b6ad1d422892e657cf03b8e6c9e16687b732c58416b1907341fe62f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.5.5.tgz + version: 6.5.5 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.4-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.4 + created: "2024-07-04T14:24:46.137860929Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: bd11ecf50a034299e174b3874e6b7b716ac75c942564063c7fc96d26e8f0b3f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.5.4.tgz + version: 6.5.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.4-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.4 + created: "2024-07-03T01:36:59.616405518Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 9bedb444b64600085bb3536c6a7e027112c063340baa9693aa0a97edb714c9cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.5.3.tgz + version: 6.5.3 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.3-debian-12-r4 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.3 + created: "2024-07-02T22:46:57.178515524Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 13b7329d923c2a735ac2e82ac55ef8059220cc58b95d968c94ef2db565252019 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.5.2.tgz + version: 6.5.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.3-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.3 + created: "2024-06-28T07:02:53.010494266Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 5464ce875f31c575bdbde3000b444e61ac1a79d94b9491a1be9aacd1cdd77847 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.5.1.tgz + version: 6.5.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.3-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.3 + created: "2024-06-27T09:22:38.306129716Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: d344de838211a898e1f4e0a54ce7379eeb2ac11fb01ecc742b91fb20eefee1f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.5.0.tgz + version: 6.5.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.3-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.3 + created: "2024-06-18T11:36:58.026563369Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 4d474ac1e96d9e6ebbf0a1dbcb3ab897836f493873513e8530d6a27e3c4da3db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.4.8.tgz + version: 6.4.8 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.3-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.3 + created: "2024-06-17T12:13:54.016355876Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 05b853644c53c9c6c0510885c80e0d609bf629df2111f0ab904feff9c7502d50 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.4.7.tgz + version: 6.4.7 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.3-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.3 + created: "2024-06-11T11:56:48.312099192Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 9beba4018769be22ef182e8e2f4db1381feb1853b920095deaa1379f57f187fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.4.6.tgz + version: 6.4.6 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.3-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.3 + created: "2024-06-06T15:29:54.616518566Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: fbacae0457e862c827e2dee57ea7805715a27d7c54bdd567ac257b53683c817e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.4.5.tgz + version: 6.4.5 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.3-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.3 + created: "2024-06-06T10:50:07.346700386Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: eb7d306150ad9a581ea506b667e2a7c5f1772c0ebec76fd37098141feb573285 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.4.4.tgz + version: 6.4.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.2-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.2 + created: "2024-06-05T09:44:31.585269075Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 5dd85d38942388f7a6022502441fa54c104257dd0b5ff93b2f51305253948ed6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.4.2.tgz + version: 6.4.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.2-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.40.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.2 + created: "2024-06-05T00:12:31.975392356Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: ba8f66437f1fca20be4cd7cec697d55e8c5bca8c6b7d2d8513f577c175c8a2d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.4.1.tgz + version: 6.4.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.2-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.2 + created: "2024-05-30T07:47:47.158020599Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a9ec812ab62bd66bcb24377bbe390469ad5e10c4b826380c68479d96e2e45777 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.4.0.tgz + version: 6.4.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.2-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.2 + created: "2024-05-28T11:53:59.003565428Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 306917809bb93f851b14d234c7173dc269a18e23400925a4889d0b1e68c5c9e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.3.4.tgz + version: 6.3.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.2-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.2 + created: "2024-05-24T15:00:26.063397546Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 814b3e3be07daa57c76ff7ff912b2cbaecc0c100a2f52be2800e72f1b83870a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.3.3.tgz + version: 6.3.3 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.0-debian-12-r5 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-05-24T08:06:12.168229973Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a35a71b9053f374fe1171523feccf688fa1adaeb5db7053d20fb922ddb34fb48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.3.2.tgz + version: 6.3.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.0-debian-12-r5 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-05-23T13:50:04.480936785Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 613f0298ea165161ff28620daa6371b2eed75991e4ddd548302bafac83356660 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.3.1.tgz + version: 6.3.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.0-debian-12-r5 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: redis + image: docker.io/bitnami/redis:7.2.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-05-21T09:12:11.696257738Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b126b237ae84b28b06c1d0eb69f51d70d46b86da20113f32b9c0c12313fca737 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.2.4.tgz + version: 6.2.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.0-debian-12-r5 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-05-21T08:27:58.570759722Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 206944fbd68480d97107eaebce47eba204dabbd4a897a836a8e162b18e36ef48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.2.3.tgz + version: 6.2.3 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.0-debian-12-r3 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-05-13T20:57:22.756975359Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 522a22414291d80470542d1af5ea4c46ee08f64afc88cee60e92f0873ab5e4ca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.2.2.tgz + version: 6.2.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.0-debian-12-r2 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-05-13T11:28:49.639171615Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a5ff4574b00bc832788d67b710cea795ee2244edfd8f08efc806fae3218e3a54 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.2.1.tgz + version: 6.2.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.0-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-05-08T09:27:39.2963213Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 1698b36f38d790c2672632e3b13d2c2bd6a4f08644cd9f99b7be21ea180c1678 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.2.0.tgz + version: 6.2.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.11.0-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-05-07T23:04:15.747088048Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: c7889c9945934d211748483bb5998fc24b6443fa07eec703d84f67fe6cbcb6ca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.1.1.tgz + version: 6.1.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.9-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.9 + created: "2024-05-06T16:00:36.213879171Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: e6452a0e0c9ea4783933f2e99be2e795299b3107d40c8615aab785117e955471 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.1.0.tgz + version: 6.1.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.9-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.9 + created: "2024-04-30T19:55:50.908130492Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 51adfd8a04777b6e1d5378b4b0e17a559cf471b8392547bd7f4490dd8e09336a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.15.tgz + version: 6.0.15 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.8-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.8 + created: "2024-04-26T17:40:28.522582733Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: e4c5fe978907d9ba90467a1c21b7184dbe358173817a4bf3bdff6775af18ad06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.14.tgz + version: 6.0.14 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.7-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.7 + created: "2024-04-26T06:21:11.348841876Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 616ac4efdbc556e0674d6df1e5d1bf4117c3822be2a860b3454e171b71b6e7c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.13.tgz + version: 6.0.13 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.7-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.7 + created: "2024-04-24T14:24:51.5835044Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: bb30690f1520eb356079140719f5b814e9d56ba93808901fcec440f4dbdfea51 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.12.tgz + version: 6.0.12 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.7-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.7 + created: "2024-04-23T09:27:15.222735466Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: eb0e075aa8743e3f992757e3e274c5305b4074f5225c11a89a9995985a58d503 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.11.tgz + version: 6.0.11 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.7-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.7 + created: "2024-04-15T10:49:28.003279729Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 8e97273d03f55b13be18424f78ed93ebd550fc5f0d7b0a0c0b448c429333031b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.10.tgz + version: 6.0.10 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.6-debian-12-r2 + - name: dex + image: docker.io/bitnami/dex:2.39.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.6 + created: "2024-04-10T23:06:19.489827068Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 279d802e27758f797a4c73195b7cbe49bfe959e20208f6332677b9794ceb9d82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.9.tgz + version: 6.0.9 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.6-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.39.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.6 + created: "2024-04-10T14:29:10.120953101Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 27d939db85d55b5eedef92f89034f334121d3212c64bb52e38a0c1cc327a7e12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.8.tgz + version: 6.0.8 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.6-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.39.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.6 + created: "2024-04-10T10:43:41.578403617Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 1eb89896b9018c776e02f7bd070829d61a11b28129c07560c435c0b294ba3618 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.7.tgz + version: 6.0.7 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.6-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.39.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.6 + created: "2024-04-05T17:01:01.585358003Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 196218b31f996a208ab6e036b79aba1db04a109a9bb97780778e43bc0079248d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.6.tgz + version: 6.0.6 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.6-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.6 + created: "2024-04-05T05:05:06.421974087Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b361378f760434b0bff11be26d832c79935219e8493fb9804a1e132929ee83ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.5.tgz + version: 6.0.5 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.5-debian-12-r4 + - name: dex + image: docker.io/bitnami/dex:2.39.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.5 + created: "2024-04-04T23:45:21.769746618Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: fc904e2b5e0394b431282d6d0c15754c0f54193f383a100dbe8511000a52360a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.4.tgz + version: 6.0.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.5-debian-12-r3 + - name: dex + image: docker.io/bitnami/dex:2.39.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.5 + created: "2024-04-04T20:56:18.95904285Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: bfbf9ea4993e00a4f2fa8202be86003d6e5e3bc204730a38c3a049f5ab78b2ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.3.tgz + version: 6.0.3 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.5-debian-12-r2 + - name: dex + image: docker.io/bitnami/dex:2.39.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.5 + created: "2024-04-04T12:30:11.20486026Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 78b9dbed213f2e379d11baae87ca3a656c377fce2ffc5d158a67f6fb6d069911 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.2.tgz + version: 6.0.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.5-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.39.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.5 + created: "2024-03-28T17:04:20.669167469Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 1ae7f238de18ff7b769f75afec73c154e1d4fc70fd5c096901ab8fa88df5a0f0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.1.tgz + version: 6.0.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.4-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.4 + created: "2024-03-20T17:16:29.182332808Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 017cff7bb75a1f6801fb4ee20806a0e744d4637ce1b6cff7f410b28276b2ca38 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-6.0.0.tgz + version: 6.0.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.4-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.4 + created: "2024-03-18T11:07:06.734245019Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 28f3b6f243d4516b905df7aa68d6c8e6c8da03405716127b6966aa06641e72a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.10.6.tgz + version: 5.10.6 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.3-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.3 + created: "2024-03-13T22:52:13.438500741Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: bf2cf5472c6415f87c983d7329e29e2e0719f4edda4c6e8f457b409aa77135ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.10.5.tgz + version: 5.10.5 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.2-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-03-13T09:44:28.033446814Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 140e6cb138bbf1059d207d6bb1e191220692405d1dd0614bcb3df3d373863456 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.10.4.tgz + version: 5.10.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.2-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-03-11T07:56:59.50742957Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 4a338457e3e8f2081581f6c4c97d7dd746867e237efeac605ed63291fff7d839 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.10.3.tgz + version: 5.10.3 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.2-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-03-08T16:17:26.344573242Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: c9855036e7c1414a3f9f4f0fece4b2b3498faca03f13b0f890aa91d81e0d2039 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.10.2.tgz + version: 5.10.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.2-debian-12-r1 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-03-06T13:20:56.075591543Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 7bd26c4e5139201a32aed45d3e0cdb95672e1ddb541eeecbd5de4a92ccaeb993 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.10.1.tgz + version: 5.10.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.2-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-03-06T10:42:25.39895994Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 8a0048ede6ca5aa34835a6f3a687f6fea67859792d5c84285e7835001d6f1b5d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.10.0.tgz + version: 5.10.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.2-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-03-01T22:59:33.267836175Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 83956a1e03c22d58c9c71be3770eb9f66a57ddd16dcf23dac9d299c768e21194 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.9.2.tgz + version: 5.9.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.1-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-02-26T15:38:57.444568745Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: c7b2ad00be6cb56f7f206de09428c0a932b015b012e62c18d640dad44454131a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.9.1.tgz + version: 5.9.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.0-debian-12-r5 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-23T16:30:50.195481974Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 83a3a4b23d516b390489857ac8614e03cad360edae09dc32561099c4df1a2a2f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.9.0.tgz + version: 5.9.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.0-debian-12-r5 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-21T12:53:18.523477003Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 46fc9736d234bbb913cb6601efee1e0e362810c1fb8676a40179503e9750d33e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.8.1.tgz + version: 5.8.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.0-debian-11-r2 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-15T12:30:18.713039798Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: ce3e6138be6ad58920e809a211bb54e279aa631a3f6eb9de3ee3d05df0271a96 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.7.0.tgz + version: 5.7.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.0-debian-11-r2 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-13T12:47:50.276017369Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 71327867bf6c29cc4d3bfd696270e2c8aa5bfa1ac05d8d5fb4bf0d11bdcb0881 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.6.0.tgz + version: 5.6.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.10.0-debian-11-r2 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-07T14:41:26.312968055Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: ad7e796c90ac3801f67573461d888317b8592c64b1e0d52fce0156b2cd276310 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.5.6.tgz + version: 5.5.6 + - annotations: + category: Infrastructure + images: | + - d + - e + - x + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-07T10:06:47.13009748Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: aa5dd4488f9529d61f171faa8f0ab69dca16cb353b04d2d533f38d2b0c644802 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.5.5.tgz + version: 5.5.5 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.6-debian-11-r1 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-02-05T15:08:22.428694236Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 0d18e61cfa4c3e25760720270c0347a67a9bb20290f1cc7b9af8fead2b173bc4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.5.4.tgz + version: 5.5.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.6-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-02-03T08:09:51.695408348Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a0da004a0b3ee925d47eb560e879a06dbcff5e10bc14f2adee5be347ab70e544 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.5.3.tgz + version: 5.5.3 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.5-debian-11-r4 + - name: dex + image: docker.io/bitnami/dex:2.38.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-01-31T08:07:34.980592706Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 6e4874a5afe418df121dc64deaf97b4e9cceb70eec6cb3f1e5c8d47571c70284 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.5.2.tgz + version: 5.5.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.5-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r103 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-01-22T11:23:19.411953577Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 10eb8e1dce76ab364889b805ea1db9ea7339aa048170aed1b9dcd8c5bb00e965 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.5.0.tgz + version: 5.5.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.5-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r103 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-01-20T05:34:05.583559Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b5c60de2372ba27df847178740c8a163490d7ae287f2c41f67602197c3cac845 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.4.5.tgz + version: 5.4.5 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.4-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r102 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-01-18T23:02:49.957235016Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 35149469dc4beb1c6eb279df38c70d2b3f550786e13fbe84b6c3119973aa82ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.4.4.tgz + version: 5.4.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.3-debian-11-r6 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r102 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-18T16:12:42.74810838Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 5284b1ad81dd2924ca6b9e3f15daa8fbb692312411253f96e78498e844e8c521 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.4.3.tgz + version: 5.4.3 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.3-debian-11-r6 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r102 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-18T14:06:00.246766614Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 986ac022f7b664889577f6868ef18184cbf62fc7184e7c718304ea3e7e464536 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.4.2.tgz + version: 5.4.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.3-debian-11-r5 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r102 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-18T10:29:48.935224577Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 517bf63bd37122361b70760888e519f9b8f5f63581f23cee758bb1bc7924b476 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.4.1.tgz + version: 5.4.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.3-debian-11-r5 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r101 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-17T11:58:33.971198237Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 9672024384948388f017f22692beabea8ba248e1d4c33e804aeb113a4ce9de76 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.4.0.tgz + version: 5.4.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.3-debian-11-r5 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r101 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-10T10:24:05.396312583Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: ccd737ae4862ef6319f4dfc4c1c137cde644cbc972badec86c05a49e5cd4825b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.3.0.tgz + version: 5.3.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.3-debian-11-r5 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r101 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: redis + image: docker.io/bitnami/redis:7.2.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-10T04:02:58.882215854Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: f615603026d8a83c2cdd6012666ea4da81fb5f19f3c97f0ef9effc7d476d234c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.12.tgz + version: 5.2.12 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.3-debian-11-r2 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r100 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-09T16:17:32.793362279Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 7aadf82301fb27f47a61071e5b8a0af03de9a52bb843699a7dba9571442fef3b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.11.tgz + version: 5.2.11 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.3-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r100 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2023-12-12T13:49:32.378603649Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: fda2a9b0f8e776ca9a47740a57074b4372aae38e96bf9f1748c8dcf8a5794288 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.10.tgz + version: 5.2.10 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.2-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r98 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-12-05T11:38:13.867713544Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 26fd9c6b95e7eda829c82f01179db1c22ad9efb60e984878548edc425b2a2358 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.9.tgz + version: 5.2.9 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.2-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r98 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-11-21T18:00:26.94224238Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 462e3e084c7398f99e081a661c0fdbd83fd003a4dc0070035b6434692dcd2b1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.8.tgz + version: 5.2.8 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.1-debian-11-r1 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r98 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-11-20T20:28:52.339224778Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 8d7fad988c75770f61bb7c539e773d291f03ebd017429ce138345bd36b1e898b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.7.tgz + version: 5.2.7 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.1-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r98 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-11-15T22:08:14.701930172Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: cd2a98d334bc6a1322e910d0ca1f900988d6c2864f53302d25f7d55779989356 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.6.tgz + version: 5.2.6 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.1-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r98 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-11-14T20:27:01.17191169Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: eb9681c11088ce5d82afe54169901f74c394a08f8cbdbc9721de81eb53e07bfc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.5.tgz + version: 5.2.5 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.0-debian-11-r2 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r98 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-11-09T08:51:08.059790225Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b6bb76cb029fd418fa0805aa4754b777fb595359367745350fbd837e3c7abd84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.4.tgz + version: 5.2.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.0-debian-11-r1 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r97 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-11-08T16:50:12.296615541Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 4b43ed9d8a5cb195491ae96a1ff5d106cdba698708b9986a629ab615bb144e7b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.3.tgz + version: 5.2.3 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.0-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r97 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-11-08T16:25:39.420825509Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: f464c4cb626bacfa89a08dc859f2ece08fa4b7d3b0b2f81ed7dd0ce0100c572e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.2.tgz + version: 5.2.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.9.0-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r97 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-11-06T08:53:06.261473236Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 87504fc50b87d75d4723686fbecf31d2663d0f41d78b67ff90ef0a24b75f18bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.1.tgz + version: 5.2.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r19 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r97 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-10-31T15:32:22.2225852Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 9fb23721da176ea53b11824ed34ccd232d6249d64f2afe0d4e18ef7225e7ec31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.2.0.tgz + version: 5.2.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r19 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r97 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-10-26T18:23:25.340698442Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 06a4445b0be021066ca3f643f25602f601a468a9d47aa7113cf4272a919e5d82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.17.tgz + version: 5.1.17 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r18 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r97 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-10-26T14:19:23.042566297Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a2cbdce8a97ca996793a1b2617282f30015d66ed33c64caa041888fc3bea7784 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.16.tgz + version: 5.1.16 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r17 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r97 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-10-19T23:59:40.31453697Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 30403d7617ca09f627e1c6d1c75aafff957680debbe462a08effbadf5ad28c52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.15.tgz + version: 5.1.15 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r16 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r97 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-10-19T21:30:15.530071384Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 18217ed76ed42d0686bb216ae4a14431f5b82213a7907d8e599d531fbfb6738b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.14.tgz + version: 5.1.14 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r15 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r97 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.1-debian-11-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-10-12T21:19:25.935219433Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 5f918e65ea84adee72ebc7ca1355d1c32de670a0ae8c8f3ce5ef0150e1afdea7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.13.tgz + version: 5.1.13 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r14 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r97 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: redis + image: docker.io/bitnami/redis:7.2.1-debian-11-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-10-12T15:01:01.872650481Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 966efa855236721088ca8712e7726f9783bce9a6a4ea82d3b97ca299c3817c53 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.12.tgz + version: 5.1.12 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r13 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r94 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + - name: redis + image: docker.io/bitnami/redis:7.2.1-debian-11-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-10-11T01:53:36.669014366Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 64933fadcccd5aa16cad0206984f1c7282abb71d9a7a773951fc8c571f3927c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.11.tgz + version: 5.1.11 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r11 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r94 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + - name: redis + image: docker.io/bitnami/redis:7.2.1-debian-11-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-10-10T01:44:36.53439004Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 8160bb7034bee203a6712f7360029bba4ace3106cf53fe98cf6f15d9ff62905e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.10.tgz + version: 5.1.10 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r8 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r90 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + - name: redis + image: docker.io/bitnami/redis:7.2.1-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-10-03T08:00:34.309417722Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: c1a529b17f3e10a889ba0d5f007687a29db526b64167b9bec3c3ebc93ef38a7c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.7.tgz + version: 5.1.7 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r5 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r87 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r83 + - name: redis + image: docker.io/bitnami/redis:7.2.1-debian-11-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-09-29T20:52:17.768976542Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 7cc97b98354861169195a2255ed537c5e32f5a40e35b199a9867c0005519388a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.6.tgz + version: 5.1.6 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r3 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r87 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + - name: redis + image: docker.io/bitnami/redis:7.2.1-debian-11-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-09-28T03:14:31.158594214Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 8c33e9da9c50d442e0c4c84c9186ec582c23a7ad2ee93a8888472e1af555c495 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.5.tgz + version: 5.1.5 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.4-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r84 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + - name: redis + image: docker.io/bitnami/redis:7.2.1-debian-11-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-09-25T18:54:40.120799832Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 185328c1c055c14aee0bf750b783ce540f478ce5784a8827df1f6c6f9a364327 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.4.tgz + version: 5.1.4 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.3-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r66 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + - name: redis + image: docker.io/bitnami/redis:7.2.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-09-18T14:53:56.743870999Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 6c9553f1d10e044779e041a2753d16978a58cfc4e48cf08638e5d8297d8a4db3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.3.tgz + version: 5.1.3 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.3-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r66 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + - name: redis + image: docker.io/bitnami/redis:7.2.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-09-07T21:44:33.760473852Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 7a6c4344d158fdec6bc8dcb41465400c3a49eb7470f56ae45c09645251335928 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.2.tgz + version: 5.1.2 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.2-debian-11-r2 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r57 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r48 + - name: redis + image: docker.io/bitnami/redis:7.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-09-11T11:14:00.258994889Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 5146d539041bfd510be2b6b19d729b6c1644f46dc2e3ea094c45285551570037 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.1.tgz + version: 5.1.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.2-debian-11-r2 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r57 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r48 + - name: redis + image: docker.io/bitnami/redis:7.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-08-29T06:59:22.655284196Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: c04e6e88aa44108d2b776bd944ce0966d53a3f17ffb0513fc65d1f51599704dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.1.0.tgz + version: 5.1.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.2-debian-11-r2 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r57 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r48 + - name: redis + image: docker.io/bitnami/redis:7.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-08-28T13:19:22.77348124Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 86acc3a8a9a85ea799c9122fc4befa4c2d9726ac5d7dd80d480c6cab2839a395 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.0.1.tgz + version: 5.0.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.1-debian-11-r3 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r51 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r45 + - name: redis + image: docker.io/bitnami/redis:7.2.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-08-28T08:28:51.874667107Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 43d7cca4190ab25ad78411e8df846fc3b69048af34d7bc9890830fc549b6db83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-5.0.0.tgz + version: 5.0.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.1-debian-11-r3 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r51 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r45 + - name: redis + image: docker.io/bitnami/redis:7.2.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-08-24T11:41:38.364354342Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: ba1b51397da40df450eb4676a32274b8b4451e3813680d75908ad3c82efe177a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.8.1.tgz + version: 4.8.1 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.1-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r49 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + - name: redis + image: docker.io/bitnami/redis:7.2.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-08-22T12:38:37.983562745Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 0c4f2b2332c39a1f6fd755ae4f195d64212e7d6dc55e1829e3c403aec59d1aea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.8.0.tgz + version: 4.8.0 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.1-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r49 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + - name: redis + image: docker.io/bitnami/redis:7.2.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-08-22T03:37:04.213239171Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 82ddddbbe395133a1637f415d627024d46ef01b20aa4681eb4345fdaf89e35f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.25.tgz + version: 4.7.25 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.0-debian-11-r14 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r49 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + - name: redis + image: docker.io/bitnami/redis:7.2.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-21T15:23:16.801040469Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: d941564213c628dcaa0cbeb9dd856992681b172dd8d6bb9067c351f0ac721ccf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.24.tgz + version: 4.7.24 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.0-debian-11-r9 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + - name: redis + image: docker.io/bitnami/redis:7.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-17T13:01:53.154368811Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 007ce24cb9f459f15f3b76e58c054dde79e82d3daf1a4b9c9a19ef34eb5d34c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.23.tgz + version: 4.7.23 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.0-debian-11-r4 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r39 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r34 + - name: redis + image: docker.io/bitnami/redis:7.0.12-debian-11-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-16T07:59:41.972385662Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 926b78379c789f4cd06d5e5e80d6da1e5ef33e98be86738e114fda28af04f22e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.22.tgz + version: 4.7.22 + - annotations: + category: Infrastructure + images: | + - name: argo-cd + image: docker.io/bitnami/argo-cd:2.8.0-debian-11-r0 + - name: dex + image: docker.io/bitnami/dex:2.37.0-debian-11-r36 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + - name: redis + image: docker.io/bitnami/redis:7.0.12-debian-11-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-09T09:24:37.656240284Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b4c65085510aea922bbcb5d5c99c6ddabd6e92625c0af447c1c3b44934fd22b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.21.tgz + version: 4.7.21 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.10 + created: "2023-08-08T14:48:24.12430156Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 97f271e6e7e898337f178f595108127d67b2687a491fbf366a25f73b2c36efe9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.20.tgz + version: 4.7.20 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.10 + created: "2023-08-01T08:39:29.30042309Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: e872bbd1bdc390427aea0aa47f2c3d2eb34e6aff9f108586722238058b9e2324 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.19.tgz + version: 4.7.19 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.9 + created: "2023-07-25T06:41:33.111461338Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 5eded2618c41bcb718169a22a17ea2172e9bbb64fa7b6d450c27a82ae11436a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.18.tgz + version: 4.7.18 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.8 + created: "2023-07-21T11:00:20.310377859Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: ec5fe90ad452ada146b2d67a15eb2ccf74c80a562b1de9b226725b25e0bcc0b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.17.tgz + version: 4.7.17 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.7 + created: "2023-07-14T00:44:41.735953442Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 1e3c917207dc3c4994b78ffa93e9bf4311db8c1b1b7345d0d778e7b78e4e1af1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.16.tgz + version: 4.7.16 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.7 + created: "2023-07-13T13:50:45.082427622Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 012f006d07ec1610311ecdb302376099f96df0c5def560306a6fe5c3c0be4c83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.15.tgz + version: 4.7.15 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.7 + created: "2023-07-07T07:00:30.128061318Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 5cb90b62597eb1929095df2942aa9e4fc54c94aeafff70fd3937a8745666d5d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.14.tgz + version: 4.7.14 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2023-06-24T17:59:27.188697382Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 1fdd9fff1a728a9b3d274a585b13f96c36e94fdda0b761eec55b2f9cd630f25e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.13.tgz + version: 4.7.13 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2023-06-20T06:55:47.845574437Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: ad97b8945dede19a2dd9b1ff2e1ee6fbd2ded4272dbc435a260e48460b8ba0d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.12.tgz + version: 4.7.12 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2023-06-20T06:43:22.759085582Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 02b61b1983063b8d0514dfebf69f43425d6fcf2ef3f38f3398e1b750e7bddbab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.11.tgz + version: 4.7.11 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2023-06-19T07:48:50.256344676Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 4480a899b4c18787493101edb60eb4c649166a372898a9a1f124417cfeabccb5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.10.tgz + version: 4.7.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-06-15T16:53:16.488028022Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 9c5a1a930b0b7bd1bb1b0e61d95663430ec91c8be8f6afd055788fa71790b4c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.9.tgz + version: 4.7.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-06-14T13:53:34.639967078Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: c1050ee0b042e575db76e24ff417c10b49c6dd43f31df73c58f38722037615b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.8.tgz + version: 4.7.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-06-13T13:16:44.232804676Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b9b0417ad59cf16b6601147a6199dbe24f294916ec5d9c6dfa6ab6c3d30ac716 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.7.tgz + version: 4.7.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-06-05T23:29:56.324150583Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: e0632bfe19d2140c6d5609db7d6e44ff3aa09a293f2f127dc6f59f4ba552a232 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.6.tgz + version: 4.7.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-05-25T04:53:35.948526555Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 85c9d1b50eec824fe2cedfe6c32f26fee9381a3c30f150f676c5623f088065a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.5.tgz + version: 4.7.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-05-21T14:36:07.831088151Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a1db9bffd5075b6ea4ff53c476da7857455f17b1fecb1afb131d10542bebaccb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.4.tgz + version: 4.7.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-05-22T08:09:36.342288476Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 2ce9db8f48fe7d79d10ca33c64200c41c475bd7d0ebcfe5c3625de665459729b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.3.tgz + version: 4.7.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-05-12T12:37:27.825972926Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 5cce0457bd122027e448489e6067f3c19225a4d65457eb8849237cba691524ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.2.tgz + version: 4.7.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-05-11T14:27:46.664646694Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: de82ebb0749af8591a0a0d037f321b2ecc461b931f45fd4efb1a6d3647e5c3e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-cd + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.7.1.tgz + version: 4.7.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-05-09T12:52:10.666087672Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 37bb2cc174c26e88521f5a5ea4f59e872c02d360f0e3245e95b12e223eb14e1f + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.6.3.tgz + version: 4.6.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-04-29T16:53:14.467050564Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: d144eb8c2a990c9a9519b8458e8ca336697dbb6d9de7b6a636b07c7296d6da26 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.6.2.tgz + version: 4.6.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-04-25T13:53:36.415489094Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 91659d83c7d2c8f7ad750bf6266834e89c895ab34969dad2656bc7a613577110 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.6.1.tgz + version: 4.6.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-04-17T15:55:18.190760534Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 450149a6579a35a20c10b21a945a0ef481bf9d56e7cd1b4c3302a8586f6428f1 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.5.7.tgz + version: 4.5.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-04-11T10:43:10.752065228Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: d8f5af0de8d090d735a8457f0aec384204f90b925a6e2ea0be08985b308158e5 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.5.6.tgz + version: 4.5.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-04-06T14:14:46.009995481Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b6a078b8da65ba4e2e07340bd191f4b9673b5214676aa6db7adb4aa9b0db8ba1 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.5.5.tgz + version: 4.5.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-04-03T16:18:39.488441006Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 45dfab0bddb02c3e87ae99e879d44b123dccd22af2fcaebed9ffb201df5dfd3d + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.5.4.tgz + version: 4.5.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-03-30T07:12:28.520740729Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: eb1c14c32542369693e64e1fe22516ff8dffcf5f29a126ecf6d24ed2db1c32fb + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.5.3.tgz + version: 4.5.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.7 + created: "2023-03-23T19:59:09.839230789Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: ef2936ef0d493da0d9bf530cb04fc4e05bad750476fbcb9617c5e23a0bc04235 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.5.2.tgz + version: 4.5.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.6 + created: "2023-03-23T11:46:40.320294874Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: cfedb1567d5d996ca78c3f541891b641b616876700d0ebc681ac3fdd9919bbd8 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.5.1.tgz + version: 4.5.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.6 + created: "2023-03-20T10:04:13.786534528Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: e1c22c88bd3cd6a7bd42099949187b20bfda0ea93b032c909e810827639ba0d2 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.5.0.tgz + version: 4.5.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.6 + created: "2023-03-18T21:47:14.319927017Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: cf876e1ab212b5563c4aaad370ffbc103d9df661765a8778cb62e801bcb1119a + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.16.tgz + version: 4.4.16 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.5 + created: "2023-03-15T06:56:40.628871832Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 687a0c37cd7d2cf5a1bced860a5c903420e70802e57439961a93750568376c4b + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.15.tgz + version: 4.4.15 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.4 + created: "2023-03-09T02:50:53.475795726Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b5cd461508d84214ec0b7f07e49f25d8386b43eb2cdb54ac6ad0e83969b90bb9 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.14.tgz + version: 4.4.14 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.4 + created: "2023-03-08T07:42:40.743212182Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 6c65ac24a81a943e676485a513391f4ee7b183ceadeb480b01addfe41704759d + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.13.tgz + version: 4.4.13 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-03-01T11:42:00.152668875Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 654b63aac91019f53594000bffc69740d43aecb843eeeaca41d262d42793aa04 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.12.tgz + version: 4.4.12 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-02-27T19:49:13.999578789Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 4085aae26a2b59365398981b275ceb845cca75ae0ceb5bb9b6bc9cb5e222a991 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.11.tgz + version: 4.4.11 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.2 + created: "2023-02-17T14:51:31.848812476Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b263d777236af7aed66b09364a945ed4b391aca3559d7acdc31ca2cd6619b9fc + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.10.tgz + version: 4.4.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-02-09T13:14:53.531875587Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 537c660d9019fd62d84242613f9a62d4e9ffdae2d4bb3ee881127e1dfa5be639 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.9.tgz + version: 4.4.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-02-08T23:00:02.123670489Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 8d568e3ff90c1258daac6c94b29f039a9f0ba50bbb9a4940e2677b4cf5c073b7 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.8.tgz + version: 4.4.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.0 + created: "2023-02-07T04:45:00.800875406Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 5469bef68a7bc0f32e229b599229404c7fc539c9e983ebfa79e9cb6f342be4e0 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.7.tgz + version: 4.4.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.10 + created: "2023-02-02T20:08:03.909403097Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: e104d84d3f4da4a7e4686a08d661e94dc637f49ffcfba6dcde1c5519dc57ce3d + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.6.tgz + version: 4.4.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.9 + created: "2023-01-31T14:37:54.956352995Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b6629feedf03ab21d7e9df15ff4c3c9d5b3db69b039a23f91540d39440c2f884 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.5.tgz + version: 4.4.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.9 + created: "2023-01-29T18:07:45.240714584Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 035571297d7c0795116a4aa75453f2f739c248c6ef061cfd8f7c90b5b9cde27f + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.4.tgz + version: 4.4.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.8 + created: "2023-01-26T13:00:44.600531018Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 5a53bf7ddc019c3c8500b37f15fa43b18a2e8ab2f8ee8bbed2f2368f42baf8f8 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.3.tgz + version: 4.4.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.7 + created: "2023-01-18T05:35:36.568826584Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 027b1e528b6e4a3d871257ab00d9f2a33649afa1bd0749045ce96a5e82abcee7 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.2.tgz + version: 4.4.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.6 + created: "2023-01-10T23:46:50.481209376Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 82f0148d0b669a40a934857c289478866582e687d051555b97ad91d81f8caa8b + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.1.tgz + version: 4.4.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.5 + created: "2022-12-21T16:40:54.476847017Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 7032117c8df280e11d55a4fe6a4106c3d443a2878c29474d5fa5e7f811cd7b3f + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.4.0.tgz + version: 4.4.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.5 + created: "2022-12-19T11:00:07.150235161Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: f8d20f4c6f60c71726467f047f1470cd51cad43db82bba71cd6e53635d32fefa + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.3.8.tgz + version: 4.3.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.4 + created: "2022-12-07T02:01:09.575656289Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 86d3a54d8a2f5fef2a29050f47380fb82144c25a71c3c821fbf9be2fc3aba4db + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.3.7.tgz + version: 4.3.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-11-28T20:36:11.852974699Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: a75f772e2bd88e97510ad66fe88a169cd47724dd12ca29256ac60f28d18f7a90 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.3.6.tgz + version: 4.3.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.2 + created: "2022-11-24T10:09:30.754725689Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 883590e2bed85dc8f338a0f6789a28a175a80fb5a857a94e551a17c305d19f4c + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.3.5.tgz + version: 4.3.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.2 + created: "2022-12-07T08:56:43.074851937Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 43a0490112608267e917d2ae0a5d92b5cd73249dca5dc244860975d6df680838 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.3.4.tgz + version: 4.3.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.2 + created: "2022-11-09T18:31:58.013542574Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: b5562b3729009aa51b699ccb6b6cfbe2dacf16f48bf64e96ea8e760fd48b4d1e + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.3.3.tgz + version: 4.3.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.2 + created: "2022-11-08T08:40:08.105010578Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 49b4d795a37a1d4b6f03173a7d55c8b1fc788e82fb54df1f235e3eb0a6cadf39 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.3.2.tgz + version: 4.3.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-11-02T03:05:03.252722824Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 6246a1276e5a7a1263614fff82499e1c7251429a7b3fd3761cd0281ad551a870 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.3.1.tgz + version: 4.3.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-10-31T16:10:52.111714686Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: 280469d65be4ccd79794e66a39e22ae9296eec0617dd5f78266ef0ebfe391c35 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.3.0.tgz + version: 4.3.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.15 + created: "2022-10-18T03:09:36.451777403Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:cd35feeee9f66926329dcb052b3a37c8c6616b284c1adea17c932bb5d0e010db + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.2.5.tgz + version: 4.2.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.14 + created: "2022-10-13T10:48:02.487358467Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:fc954e8baeae2effbf39d73fb7d3a721bfb6978f19e184114dd9f883cc8b1e0b + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.2.4.tgz + version: 4.2.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.14 + created: "2022-10-07T08:22:59.146849297Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:00465273119e3ced9fc993509fa6a4e5bb88d2c761c9ca861bc759ef50975042 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.2.3.tgz + version: 4.2.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.13 + created: "2022-10-04T03:29:01.72670684Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:3061fe9bb2530fb603932f09ee6d09aa3415faf38d728f0a5342a14c45b9c898 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.2.2.tgz + version: 4.2.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.12 + created: "2022-10-03T12:10:50.460900522Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:81f32547e21a0ebf1c4faeafb5a25055a3d79e41daaa1bf04b2d619aae95ecff + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.2.1.tgz + version: 4.2.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.12 + created: "2022-09-26T13:25:16.662522605Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:95ac26c4c28ad60fda7f6373c491311ffa1b7c950a6cd52d220c2c348642a7bc + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.2.0.tgz + version: 4.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.12 + created: "2022-09-21T09:57:49.254889699Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:bea1b5642566eea6c339f192ecdac3b46459cf1275e21ea0245b8248b60a70a6 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.1.5.tgz + version: 4.1.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.12 + created: "2022-09-16T06:55:58.548536676Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:a89b9c95e2aebecd90e32c569e35fb33e70d3824e0c5553fce1af9dfaedfaa22 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.1.4.tgz + version: 4.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.11 + created: "2022-09-03T22:17:33.792068712Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:ef579b36148f7d78ce54ff11fcfe602ac4ca78ac5ebbe7d18a1f8f6d47a6aa5c + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.1.3.tgz + version: 4.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.8 + created: "2022-09-01T11:46:07.409869708Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:edee669e3658077b27bcb5b13d0a1fd06449080f389152f2bbe3b267aea41c36 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.1.2.tgz + version: 4.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.8 + created: "2022-08-05T01:27:29.952989308Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:0cbb104b3c99447f029560902e2d7be6cd7d9d5ea348d5095ae3a4bd9e84e6a6 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.0.6.tgz + version: 4.0.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.8 + created: "2022-08-04T10:06:22.193111429Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:3c7c1d72ab494fb0e0840bcba95482c5fac2419faec28cc67935daea17f1a860 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.0.5.tgz + version: 4.0.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.8 + created: "2022-08-02T16:44:50.392637932Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:bbc9d76268d0e739b83d0346fbdcf8886e56f9991758a0c2bc65c48072fb7d60 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.0.4.tgz + version: 4.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.8 + created: "2022-07-29T23:41:14.418266707Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:75f934b6d104c763f5c143f280bb0a0a27666f4b9c486401e18b470e4ce1bd27 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/containers/tree/main/bitnami/dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.0.3.tgz + version: 4.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.7 + created: "2022-07-19T07:43:52.616765844Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:6e43b700577fcd0c66c3193d60bfa6d01adc490abc96e7e35d41af63d5e684f5 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/bitnami-docker-argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/bitnami-docker-dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.0.2.tgz + version: 4.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-07-14T14:41:29.102139239Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:5f3b8e4133da39e986c710b24ee25dbd785c41a18e2b7c3cc160e9d6393c075b + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/bitnami-docker-argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/bitnami-docker-dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-4.0.1.tgz + version: 4.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-07-08T21:24:06.928711176Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:8c4892f6119628dafd136720741937cb151c4d3719c7d867ca986f529a54748c + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/bitnami-docker-argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/bitnami-docker-dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-3.4.5.tgz + version: 3.4.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.3 + created: "2022-06-28T03:39:15.223119193Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:ec9b6a12dcd80a0ff410b4b49736c9b2bbd1e4afa4067b2431ec4e7bb87c54b0 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/bitnami-docker-argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/bitnami-docker-dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-3.4.4.tgz + version: 3.4.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.2 + created: "2022-06-25T10:26:35.594032417Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:77a7f8661383d73c926ee4c92d1f3a181f1de24da24caa78a98c6fc43f37ee11 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/bitnami-docker-argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/bitnami-docker-dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-3.4.3.tgz + version: 3.4.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.2 + created: "2022-06-22T22:51:10.307843409Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:a37c2872891671ffd783381c65a157d5580bc41a7c2b25d416546e0ced8b5169 + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/bitnami-docker-argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/bitnami-docker-dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-3.4.2.tgz + version: 3.4.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.3.4 + created: "2022-06-15T11:36:54.224813811Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:4b346a778148a25c2b549d1ac0c6dc337f195c0a98e6a0d4622471b9ffd1175c + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/bitnami-docker-argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/bitnami-docker-dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-3.4.1.tgz + version: 3.4.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.3.4 + created: "2022-06-08T20:04:01.391831741Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:2ab90b7e615fba97607f18add49203a74e4097e2fdbb8a86c22eabceea35c32c + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/bitnami-docker-argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/bitnami-docker-dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-3.3.9.tgz + version: 3.3.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.3.4 + created: "2022-06-04T03:04:15.404896142Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps. + digest: sha256:98a01ab8e6baad0fdb1713d655a24088db06b7082e50953c1b177202707c533a + home: https://argoproj.github.io/argo-cd/ + icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png + keywords: + - Continuous delivery + - Continuous deployment + - Devops + - Kubernetes + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-cd + sources: + - https://github.com/bitnami/bitnami-docker-argo-cd + - https://github.com/argoproj/argo-cd/ + - https://github.com/bitnami/bitnami-docker-dex + - https://github.com/dexidp/dex + urls: + - https://charts.bitnami.com/bitnami/argo-cd-3.3.8.tgz + version: 3.3.8 + argo-workflows: + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.10-debian-12-r2 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.10-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.10-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2024-08-07T16:25:33.59663481Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 5a35c9be974c0e8b295ecb931c9a2fc8e5572f875e9457a384a2ce340fd9bc67 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.13.tgz + version: 9.1.13 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.10-debian-12-r0 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.10-debian-12-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.10-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2024-08-07T11:08:11.478011758Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 261b258ba868e9d7ddf951f802a903387a460b12ed0dc037f437fecf414a36c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.12.tgz + version: 9.1.12 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.8-debian-12-r6 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.8-debian-12-r5 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.8-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2024-07-25T03:26:56.849532612Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: d9f603c0e5b4ba55e1b13e38e2477a5381784771308820297dffd69e7b36afab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.11.tgz + version: 9.1.11 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.8-debian-12-r5 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.8-debian-12-r4 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.8-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2024-07-24T06:39:43.839216538Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 507e981970ba3b40e142f83563a60e9d937ac5257d693fcf3c1ac6a022a79ca3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.10.tgz + version: 9.1.10 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.8-debian-12-r4 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.8-debian-12-r3 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.8-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2024-07-23T20:44:54.916309284Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 7c5499208f72383f97c866edd135146e298b4bc0551bc65c30303212640cf84b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.9.tgz + version: 9.1.9 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.8-debian-12-r3 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.8-debian-12-r2 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.8-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2024-07-23T14:49:40.865876111Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: d70a5589efb5b166985f11ca5e5e48515d7a8a5339e944fd97e4dc0241d54c40 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.8.tgz + version: 9.1.8 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.8-debian-12-r2 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.8-debian-12-r2 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.8-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2024-07-18T08:53:17.524595272Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: becac28bae34b82f738eaa72ac4292b79a497bfd806238bd592bf070e6faed03 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.7.tgz + version: 9.1.7 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.8-debian-12-r2 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.8-debian-12-r2 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.8-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2024-07-04T14:22:20.84840346Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: e41710e7df800d6f0bb961ca9f6fa8729d082310617d3a0659f80486eb4448aa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.6.tgz + version: 9.1.6 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.8-debian-12-r1 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.8-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.8-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2024-07-02T22:51:02.295659191Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: a98cb71461efa39386d1742c2162fbd527492c7e521c2ca97ac0d014941c55a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.5.tgz + version: 9.1.5 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.8-debian-12-r0 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.8-debian-12-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.8-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2024-06-18T13:08:44.639851354Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 18da46dcfa3b847f422559108182caa7fe9521abac7f977609c43bd3df0e5851 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.4.tgz + version: 9.1.4 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.7-debian-12-r1 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.7-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.7-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2024-06-17T12:09:36.930699075Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 19316d9310ade07cf080aabb364306178d953cc06aa8c5cbe166ad9c7fd7727b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.3.tgz + version: 9.1.3 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.7-debian-12-r1 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.7-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.7-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2024-06-06T15:27:26.95116346Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 812cc49e106ddff890f74a7a738d11957faaa4d056f8aa011fe081f7640a56fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.2.tgz + version: 9.1.2 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.7-debian-12-r1 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.7-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.7-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2024-06-05T14:17:15.159463285Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 5abbec65f762c470180dce6ceb3d25c3f666d7ce5c4e56c20fb497dce87984fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.1.tgz + version: 9.1.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.7-debian-12-r1 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.7-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.7-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2024-06-05T11:26:38.36842115Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: accdab82314dcaa3f343e9729c490ca98d8fcb64113b346ac4d383fcf73aec52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.1.0.tgz + version: 9.1.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.7-debian-12-r1 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.7-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.7-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2024-06-05T09:45:47.73494461Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 3e88c0f5defa4109757ca40e5e6eb56b0126f383e69e911a6e93a03fcd2fbc8a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.0.3.tgz + version: 9.0.3 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.7-debian-12-r1 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.7-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.7-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2024-06-05T00:11:14.617943956Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 81d217ef0c943ae4df0434c80d65e349d575eadcc28d5dd9b5e9688fa4b70968 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.0.2.tgz + version: 9.0.2 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.7-debian-12-r0 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.7-debian-12-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.7-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2024-05-27T09:56:51.872855324Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: c3dd826a5989496570327c061de660f5507bf64ffb8127992c82156343007ced + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.0.1.tgz + version: 9.0.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.6-debian-12-r3 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.6-debian-12-r2 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.6-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2024-05-27T08:31:10.354742389Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 585f36ce272b9d784566876cd6c10c3dc29f04c7b0907a2dd1541558968ece08 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-9.0.0.tgz + version: 9.0.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.6-debian-12-r3 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.6-debian-12-r2 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.6-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2024-05-23T08:46:07.941551089Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 4f24d1239a1f7213ebda275bf085a92deabbbb37ac4598da040d9d0e203e80cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.1.1.tgz + version: 8.1.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.6-debian-12-r3 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.6-debian-12-r2 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.6-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2024-05-21T14:23:49.783635819Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 05d6e85f1767f48fafed119f448483eeb9c5c5bd2c463ddca9c3e2f520ffe075 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.1.0.tgz + version: 8.1.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.6-debian-12-r3 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.6-debian-12-r2 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.6-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2024-05-17T23:59:46.486383263Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: c076e750deac4fd68d669261852d3af889f8c55b9bab81fa891b9f574a04a491 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.10.tgz + version: 8.0.10 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.6-debian-12-r3 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.6-debian-12-r2 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.6-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2024-05-15T07:08:40.512959952Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: b3db50034492a8b43000c60af7e12c7166f649c9f0483366b16b1deda8aff513 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.9.tgz + version: 8.0.9 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.6-debian-12-r3 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.6-debian-12-r2 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.6-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2024-05-13T19:48:30.574044415Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 8ee575e7f7d4646a9b131594b5a4965583cfb332ef73bdd80e75bc0ba0f3f14f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.8.tgz + version: 8.0.8 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.6-debian-12-r2 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.6-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.6-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2024-05-08T08:09:58.35065493Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: dae8545aebe1d3085bf73bdc624b36832499a07689092163eac79995ec5b4b1c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.7.tgz + version: 8.0.7 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.6-debian-12-r0 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.6-debian-12-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2024-04-24T13:33:00.451187631Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 1c31fb456eebac20b506e5edfa54d39febb3c4caecbd91e50563d2cd8886933f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.6.tgz + version: 8.0.6 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r5 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r3 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-04-09T14:12:08.370361938Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: a61a13be1b98502a02b2ae25655b60d2c7cca5230475a2f739d5a01cb525add7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.5.tgz + version: 8.0.5 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r5 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r3 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-04-06T08:04:45.579648228Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 41fef8b59718688b05f6dde9e1924186fc10d0f8642a841b309ed0ada3a4f850 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.4.tgz + version: 8.0.4 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r3 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r2 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-04-04T12:48:09.901158959Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 084965e09396008044d0a41bcda10d3164c348416cfa03adda007517da50dbce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.3.tgz + version: 8.0.3 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r2 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-04-03T14:05:35.37492588Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: c6988c797f44dcca88adb816b7ec812ac8b99f42d0783baf4814b579b7408912 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.2.tgz + version: 8.0.2 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r2 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-03-29T11:39:37.056734821Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 3f60077abeabbeae0f0dfd82fec21a2a86589eb5f35580a01441b05bebc7ad08 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.1.tgz + version: 8.0.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r2 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-03-26T10:13:02.658090998Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: a3b369cdb566f4f64802e778fbd1d8329101cf0a8d116222a3c6ab6f36194f51 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-8.0.0.tgz + version: 8.0.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r2 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-03-22T15:11:37.261292312Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 1f5c4bf8f2f616b3ad5a3eceb9c9b6b8a95b0df6d77af3c19b5b95dede801c79 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-7.0.1.tgz + version: 7.0.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r2 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-03-08T12:06:21.43905554Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 1d1d8a8db81dec0652307ea2e124bc51b23531cb2419ba2e0bfe963aa85a6008 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-7.0.0.tgz + version: 7.0.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r2 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-03-06T13:40:27.582602382Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: f82947ca06226ba992161696f11010616f5550fd73738c1708e6b429bbd4bbd6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.8.1.tgz + version: 6.8.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r1 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-03-06T10:43:41.231425438Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: ec1b41bdb340b484d1c16bce0b5b4ddca92b36ceaa3326c6662a9410e11dd18b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.8.0.tgz + version: 6.8.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.5-debian-12-r1 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.5-debian-12-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.5 + created: "2024-03-01T13:05:09.996505183Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 817bba7b1b31c4d973c68c3aa1d2eb6688941cfe358687d863b50babdafe5b61 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.7.2.tgz + version: 6.7.2 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.4-debian-12-r7 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.4-debian-12-r7 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.4-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.4 + created: "2024-02-29T17:34:57.925441949Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: d59ed2714a4f665e47fad1dd29fc1de30160728d3436efdeee49f6f8793eedb1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.7.1.tgz + version: 6.7.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.4-debian-12-r7 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.4-debian-12-r7 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.4-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.4 + created: "2024-02-27T11:01:47.223212356Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 632fd6b9da03281dfd2e60f64f7cca55777e72a584a8406c834382323bee6e80 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.7.0.tgz + version: 6.7.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.4-debian-12-r7 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.4-debian-12-r7 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.4-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.4 + created: "2024-02-21T16:13:06.726215561Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: e7812326454dfe1e9997927c9f548839b06ede4b17bf9a6e4110088546f36af8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.6.3.tgz + version: 6.6.3 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.4-debian-12-r6 + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.4-debian-12-r6 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.4 + created: "2024-02-21T13:00:06.037109424Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: bfbc8c21321fb5cb534187712133ca7ede7fd33fc01cebdc11e4e88d09e36797 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.6.2.tgz + version: 6.6.2 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.4-debian-11-r3 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.4-debian-11-r10 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.4 + created: "2024-02-21T08:31:20.9424761Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 811f4fccb7a5060074b00db983d860e7bfbd19bc790032f0063e5f546331021f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.6.1.tgz + version: 6.6.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r1 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2024-02-15T14:33:11.854412369Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: fd327b2353c042df5ce5c9d0a23fa83d3a759264e8643a12a442f46d6c7e73d2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.5.0.tgz + version: 6.5.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r1 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2024-02-12T09:59:58.288933592Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 9c002f2bf56956ff883938bb7e12c7570faf5f8841b683b05ea913bc8b6ae42a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.4.0.tgz + version: 6.4.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r1 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2024-01-22T07:19:55.829837897Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: b1980a4a83c4474afd31511cc8830c26c4b44c171f3a7026e380cc6ccc46496b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.3.1.tgz + version: 6.3.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r1 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2024-01-19T09:32:32.571963787Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: a5a535a85e2514ca71de053e1b7ffec4877b52e9ecdecca227e570b6b6a35070 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.3.0.tgz + version: 6.3.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r1 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2024-01-18T16:08:26.158094661Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: eeeffff46d34d3bbd10c22016f359c5b7c8115000e4b813662704b82115443ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.2.1.tgz + version: 6.2.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r1 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2024-01-16T09:42:45.515188558Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: f741181b523c2250308f46a31f5e097e63a2cae06d640a4db21bd7834d535aa4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.2.0.tgz + version: 6.2.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r1 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2024-01-15T09:17:38.942724484Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 0cfb120191f5264d6bbea6b7fe38a44d25ba672ee849f1c903a9fde15fb1e07b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.1.5.tgz + version: 6.1.5 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r1 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-11-21T18:10:28.499045799Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 8d236f8710ec576797249e77803631fca3c7f061d764cab0154b23eb43b158b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.1.4.tgz + version: 6.1.4 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r1 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-11-08T16:49:54.730836623Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 88486fafd28eebaac06bbd7d96f2f8174dc8ae641606650b49dc3af515859a98 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.1.3.tgz + version: 6.1.3 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r0 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-11-08T16:29:23.669129365Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 55aa7dab4315e16fec518639d173ea8e793b28d9ea7f878a91da722f4cc0e9cf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.1.2.tgz + version: 6.1.2 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.1-debian-11-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.1-debian-11-r0 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-11-04T06:00:58.224681916Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: e80ab46ab488c533a11d51ad822022d889a5cdd984a8dd4e493de7a8734ff34a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.1.1.tgz + version: 6.1.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.0-debian-11-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.0-debian-11-r0 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-10-31T15:31:23.766503056Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 9dbbe6bde728ca7aa5a2673a8144fb4484e4266eb2b9d2647366205c7c72f6b9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.1.0.tgz + version: 6.1.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.5.0-debian-11-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.5.0-debian-11-r0 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.5.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-10-17T11:37:39.405292048Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 773d1dc255eba81253788c9a326f80010d71d9d3a4dcdda8f6534145abdddc51 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.0.5.tgz + version: 6.0.5 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.11-debian-11-r28 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.11-debian-11-r27 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.11-debian-11-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.11 + created: "2023-10-11T02:49:29.585937934Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 29076ad8a7bf2073be57067c30d1872381ec3c8ee269d99756ec3146fab7cf11 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.0.4.tgz + version: 6.0.4 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.11-debian-11-r27 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.11-debian-11-r27 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.11-debian-11-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.11 + created: "2023-10-11T02:08:13.397813758Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 4b874681e34a2e5c9e0d8e0745b2e16c669658c1169e081de31c030d580ff283 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.0.3.tgz + version: 6.0.3 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.11-debian-11-r27 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.11-debian-11-r27 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.11-debian-11-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.11 + created: "2023-10-09T18:20:35.750083415Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 82610c2b447ddacbb3ee8c30f84af7f82d84c43c82460027b9b3930a56361726 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.0.2.tgz + version: 6.0.2 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.11-debian-11-r24 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.11-debian-11-r24 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.11-debian-11-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.11 + created: "2023-10-04T07:30:18.661990483Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 5da8eb2d0d72663074219e4f5d6c30dad9b5c1dfd11f5546ba559925766e7708 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.0.1.tgz + version: 6.0.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.11-debian-11-r17 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.11-debian-11-r17 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.11-debian-11-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.11 + created: "2023-09-29T11:21:42.738872007Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: e6dcc2a9e01acbb0683c33740147f58ad3ad7af08f68939a0fea733af2d61b63 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-6.0.0.tgz + version: 6.0.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.11-debian-11-r17 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.11-debian-11-r17 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.11-debian-11-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.11 + created: "2023-09-26T17:06:17.946339073Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: cc966d1150b9d061c123d559410bf1f2bc922a21c6207447d6733c2589e1c48a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.4.5.tgz + version: 5.4.5 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.11-debian-11-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.11-debian-11-r0 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.11-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.11 + created: "2023-09-20T08:24:07.864165543Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 547dbdab92d4edcfe187bce5b7bf45f698d7e70cee31f21ba343f89b71deca74 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.4.4.tgz + version: 5.4.4 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.11-debian-11-r0 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.11-debian-11-r0 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.11-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.11 + created: "2023-09-08T11:43:37.692602906Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: f69ebe3f7b7b0d65632c013bf4596518f028780dca9375dc24a2c84ad8c253cc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.4.3.tgz + version: 5.4.3 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.10-debian-11-r6 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.10-debian-11-r6 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.10-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.10 + created: "2023-09-07T10:41:35.253462663Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: ae88e31a33381eb586033565f49788ecfc992b3029c5e798a0c5528d958f6fe6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.4.2.tgz + version: 5.4.2 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.10-debian-11-r6 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.10-debian-11-r6 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.10-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.10 + created: "2023-08-23T17:27:00.536274844Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 59cf6530030dbeecfc27a3787152705cf380a2f1254fc1b3bade419d59285048 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.4.1.tgz + version: 5.4.1 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.10-debian-11-r4 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.10-debian-11-r2 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.10-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.10 + created: "2023-08-23T16:30:13.485233625Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 4d35693b0725e4e7a962f3892a6dff83d5dc15b40d1ee751fe2d1b055bb1a9df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.4.0.tgz + version: 5.4.0 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.10-debian-11-r4 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.10-debian-11-r2 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.10-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.10 + created: "2023-08-19T10:29:11.095512349Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 1674988b964d8a6bac3833cb491af944ca110b6baaa6f0c3dbd823b0ba439c5f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.12.tgz + version: 5.3.12 + - annotations: + category: Infrastructure + images: | + - name: argo-workflow-controller + image: docker.io/bitnami/argo-workflow-controller:3.4.10-debian-11-r1 + - name: argo-workflow-exec + image: docker.io/bitnami/argo-workflow-exec:3.4.10-debian-11-r0 + - name: argo-workflow-cli + image: docker.io/bitnami/argo-workflow-cli:3.4.9-debian-11-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.9 + created: "2023-08-17T12:21:15.903795861Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 9b73457c9eafffa3655ccc24b0e90e59c9bf3bab3f0c555fe500c2407896c462 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.11.tgz + version: 5.3.11 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.9 + created: "2023-08-08T14:47:45.490872215Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 93a26338dcdf3e59e6638b00b042b026a659e97f967d60f17982a637c0986b69 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.10.tgz + version: 5.3.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.9 + created: "2023-07-28T21:44:23.248274661Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 9f8d2de5c5ef39b3dd97cd3965c51a7282b662c8f0f72c45aeb4da96bcf388eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.9.tgz + version: 5.3.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.8 + created: "2023-07-17T20:53:00.542583346Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 039d3768c9316e23a42d9038c1b8ad0a8957c34314313f79bfb63d5df035ab10 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.8.tgz + version: 5.3.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.8 + created: "2023-07-21T14:32:53.749040005Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 59e39d620e4639d188d0cc3bbc2b2c9c11d5b9a980cd4b24ecec327af3140aef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.7.tgz + version: 5.3.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.8 + created: "2023-06-29T12:44:56.00173646Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 34a78f2244957e06bb15c122a7c2095f72b0bf787010a6c7ab1b5b2d4adb7b5c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.6.tgz + version: 5.3.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.8 + created: "2023-06-21T10:56:46.892057921Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 5103f6ba3a654dd0cfa133a465f59c61ea121ddb5c732b625b69a61ffb524c52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.5.tgz + version: 5.3.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.8 + created: "2023-06-06T10:46:02.218002037Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 11dea5d1f8afa7b1ec0cb521a62267a96b29b21febf95b35e86b4dcb4ad0a16d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.4.tgz + version: 5.3.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.8 + created: "2023-05-29T09:24:38.963591371Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 7b4458dc8eab9fb16a0fceff2eff133d750b03bc2466080edce411114106bb21 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.3.tgz + version: 5.3.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.7 + created: "2023-05-21T14:34:04.483373153Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 20a1153d82937fc9066ed799a45a03e4ac8c1cc9176417623ab383b3cfb8bc0c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.2.tgz + version: 5.3.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.7 + created: "2023-05-17T06:37:56.968401743Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: e408184ab0c27b04ae4dbb5ffce45a22362bd16850d6a135e82690a8ee73b8ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/argo-workflows + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.3.1.tgz + version: 5.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.7 + created: "2023-05-09T15:01:30.164074846Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 5cb1f3cbb0b03e5c747b1441ba6bf1ab36e46523aedd7d3a7b0d5bf3be83f4a1 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.2.1.tgz + version: 5.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.7 + created: "2023-04-14T16:07:42.928094109Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 60e60f70e3acd4b95db25b21de2609bedf6f8534b758ee5c25d920eb58b5f620 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.14.tgz + version: 5.1.14 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.6 + created: "2023-04-01T11:14:40.397919728Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: faa7c8ff3ab0990f4daf38a828859befcb256a602341bebb2fecf00b8da76107 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.13.tgz + version: 5.1.13 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.5 + created: "2023-03-18T21:57:57.444369435Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 782239b2151da574db5a64a128bee3bdf02fdd45a7b93d477c7c4ec96ba4bef6 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.12.tgz + version: 5.1.12 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.5 + created: "2023-03-03T10:11:41.910106189Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 39f3ff9583721ee3c28704af24e2aefce6b25685d7e0c2df4fc631c62a0f24b8 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.11.tgz + version: 5.1.11 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.5 + created: "2023-03-01T10:03:26.666940769Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: e1eed42c20f56dcc7e8f94c3931c85887b5a4528b8b466abac4c38dc9a664743 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.10.tgz + version: 5.1.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.5 + created: "2023-02-17T14:52:38.649605174Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 80febf39e711f3ec6335113fa97c45bfd3675cb01b04a067add314436e2557c9 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.9.tgz + version: 5.1.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.5 + created: "2023-02-16T17:00:55.929799948Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: fbf4d66174b4742cbe7ba1f87fb277249fe6f97f6aa53d7f4369858d345d7667 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.8.tgz + version: 5.1.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.5 + created: "2023-02-16T12:37:33.105070022Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 297ab61e23313ba3da431f59f106ff3de59bf9b4d22ea193b1666e9533914713 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.7.tgz + version: 5.1.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.5 + created: "2023-02-09T10:35:13.902426545Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: c99caa19d0ff618d576815c5888a5bf0ea0567e8b90139a4e8c8d8273d2ed949 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.6.tgz + version: 5.1.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.5 + created: "2023-02-07T16:32:15.201922597Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 74f837890c3a36d631c5d4e0b0ed86330e7f5bd70f198752bac814162ab5b466 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.5.tgz + version: 5.1.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.4 + created: "2023-01-31T08:33:53.903593566Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 9277d8cec559ed039e343f5dec29aed6e3587b1920b2afe07afaa6c74370a98a + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.4.tgz + version: 5.1.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.4 + created: "2023-01-29T10:45:52.752753369Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 037de26f1dbda8986994c9035ec27eebda7bbdd52ff0bb325cdb1bd277999979 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.3.tgz + version: 5.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.4 + created: "2023-01-11T07:45:52.507122949Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 162ad650446ebfabd9764fa1cce14fd533e4295c0bdb381cc662dbaf007a65e3 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.2.tgz + version: 5.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.4 + created: "2022-12-30T10:28:23.157337782Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 528ff5fd23dea5aed3263af2b798da7e782b823d0f56f7a3014b96b96b81655c + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.1.tgz + version: 5.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.4 + created: "2022-12-07T15:57:40.992363875Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: a867c3ca571331cc2fe6a76e257911fbc1e9886bf16554aec6112e5d2f5d6e6d + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.1.0.tgz + version: 5.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.4 + created: "2022-11-29T22:58:04.69960456Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: aab2ea4364ce4824534340a916fb771e51d2034b765ad57235b706c6b4d1a99f + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.0.2.tgz + version: 5.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.3 + created: "2022-11-22T14:14:47.202017732Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 1d0ab2d868e33c1d1479c964664edbed39fe52a98990cb0ab629685d3ce1322c + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.0.1.tgz + version: 5.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.3 + created: "2022-11-18T10:20:00.88779242Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: fe22dc6c392149cb834b980011c3614a0f178579aff14f25e47102bb7e5997f9 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-5.0.0.tgz + version: 5.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.3 + created: "2022-11-16T10:48:49.522188806Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: 933d89e2c2a7f95c0028f5c6d3d05bdd78de26037043e68710b55ec6da6787da + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-4.1.0.tgz + version: 4.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.3 + created: "2022-10-31T11:34:25.536334684Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:701ef1a2cb0651b40d9abe4fea18788e6585963fa9548e89b7fc342a966a33db + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-4.0.1.tgz + version: 4.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.2 + created: "2022-10-28T12:37:16.217815887Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:90eff7d08cff9d63cde25ea36cd019ed6dc33adc633997d6e3898dcaca5fb750 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-4.0.0.tgz + version: 4.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.2 + created: "2022-10-23T14:38:59.549511085Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:a9ad9c391cdc692c3aa41d968c818e153d373634f6f723adabf5d0b460a8c574 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-3.0.5.tgz + version: 3.0.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.1 + created: "2022-10-01T17:34:18.400923378Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:33fcb285a80f097852bfeffab90d13be5c888caed89b9feeb19effd38f738cad + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-3.0.4.tgz + version: 3.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.4.0 + created: "2022-09-28T19:20:04.406261897Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:42abe0b7ac70c8460e8a6c287c6484731c46025a4beefbeb95bd6cabbcd7a88c + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-3.0.3.tgz + version: 3.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.9 + created: "2022-09-28T16:02:49.188052933Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:dbb065754ffff91f6e05e49d4cc5b585fef69681cfa35ea3b83ecfc5ce4db113 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-3.0.2.tgz + version: 3.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.9 + created: "2022-09-27T17:13:59.706406881Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:22409101e28b158a9db288d57392e2d13da370653b6296102f85e62c1880fb61 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-3.0.1.tgz + version: 3.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.9 + created: "2022-09-23T15:45:38.951786122Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:05644ace35e7f4629035a2aa1121be58f0bf5410ad99ca393117b1e1e6e2e8f9 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-3.0.0.tgz + version: 3.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.9 + created: "2022-09-21T10:00:56.817130854Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:bfe834cfd660ff86ab553db8281263b8b9760a35a489602e51667ec2514b4bd2 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.4.4.tgz + version: 2.4.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.9 + created: "2022-09-09T06:03:17.180565671Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:ba1e0da0f864f29bc379ade3663ebc2b3494196b09ee75d35ead7a7abc2b1b39 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.4.3.tgz + version: 2.4.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.9 + created: "2022-08-24T00:48:51.772235846Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:612f2a6dccea1c1b8bf33b141cdde7101b9fe9d9008137425f83f1c5a4d3653f + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.4.2.tgz + version: 2.4.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.9 + created: "2022-08-23T00:02:24.996585941Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:7bbfce873cc5878c0eae0668122240a6b20c58d1e7fb68de6f556cb157bd513d + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.4.1.tgz + version: 2.4.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.9 + created: "2022-08-10T06:24:17.515191025Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:32bc6d9ca00de95132d1506fdb174ba07397feb75e1b7f997139a7d7952c6706 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.10.tgz + version: 2.3.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.8 + created: "2022-08-09T04:36:46.419768397Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:e63adfee226235aaa48b9abba4471005d88a679461a9d8a0bae81b1eec3fe174 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.9.tgz + version: 2.3.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.8 + created: "2022-08-04T21:33:42.784093257Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:d022c2eef1d476972dc1efe5586f923b4656b9668b598dc174be3c35cc796fbb + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.8.tgz + version: 2.3.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.8 + created: "2022-07-29T21:09:57.93372605Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:996d55be85f4563bc70099048509f51a47b9af9c23715aaaec4d224e10114465 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-cli + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-controller + - https://github.com/bitnami/containers/tree/main/bitnami/argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.7.tgz + version: 2.3.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.8 + created: "2022-07-12T19:08:11.189359147Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:bb00de770a12c57dda697f99c73671a630b06712c4fa4e451ec9082acb3234f0 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflows/img/argo-workflows-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/bitnami-docker-argo-workflow-cli + - https://github.com/bitnami/bitnami-docker-argo-workflow-controller + - https://github.com/bitnami/bitnami-docker-argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.6.tgz + version: 2.3.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.8 + created: "2022-07-01T10:17:42.53631256Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:ab8d9b57cec46c7596597368064a6e174e8597ae12e8d3952482a2b4ef1732c4 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflow-cli/img/argo-workflow-cli-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/bitnami-docker-argo-workflow-cli + - https://github.com/bitnami/bitnami-docker-argo-workflow-controller + - https://github.com/bitnami/bitnami-docker-argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.5.tgz + version: 2.3.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.8 + created: "2022-06-24T07:28:04.325600835Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:e0270813a8b0ad5af5f50307515cba8a9258a933f24bd998c3ffc32da089dc30 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflow-cli/img/argo-workflow-cli-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/bitnami-docker-argo-workflow-cli + - https://github.com/bitnami/bitnami-docker-argo-workflow-controller + - https://github.com/bitnami/bitnami-docker-argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.4.tgz + version: 2.3.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.7 + created: "2022-06-21T08:15:43.005323871Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:37b7aaa77d4a4c575f2d79bb5cdc575a5bd248d372948a8e6e63878ce7a01309 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflow-cli/img/argo-workflow-cli-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/bitnami-docker-argo-workflow-cli + - https://github.com/bitnami/bitnami-docker-argo-workflow-controller + - https://github.com/bitnami/bitnami-docker-argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.3.tgz + version: 2.3.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.6 + created: "2022-06-14T21:14:08.630871889Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:45deb4e0456684badfc17cee5526fef3025fbb85303a4ce062cc0091a6d86b04 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflow-cli/img/argo-workflow-cli-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/bitnami-docker-argo-workflow-cli + - https://github.com/bitnami/bitnami-docker-argo-workflow-controller + - https://github.com/bitnami/bitnami-docker-argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.2.tgz + version: 2.3.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.6 + created: "2022-06-09T15:54:41.419593805Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:8cf8c015530f82dc9f2ff9eb1795bb8dc538a633496e5ace5fc08afac1a13c72 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflow-cli/img/argo-workflow-cli-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/bitnami-docker-argo-workflow-cli + - https://github.com/bitnami/bitnami-docker-argo-workflow-controller + - https://github.com/bitnami/bitnami-docker-argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.1.tgz + version: 2.3.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.6 + created: "2022-06-03T08:02:30.017099533Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:0235b8719e93c6911727d291b56c8172300f4edd9c167b3448b54f2347379070 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflow-cli/img/argo-workflow-cli-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: argo-workflows + sources: + - https://github.com/bitnami/bitnami-docker-argo-workflow-cli + - https://github.com/bitnami/bitnami-docker-argo-workflow-controller + - https://github.com/bitnami/bitnami-docker-argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.3.0.tgz + version: 2.3.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.6 + created: "2022-06-01T05:08:46.137124235Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Argo Workflows is meant to orchestrate Kubernetes jobs in parallel. + It uses DAG and step-based workflows + digest: sha256:bf960459c34688aa9ecb21a066a6c80f86f171c76b9f3ee1ad063e6f87913b17 + home: https://argoproj.github.io/workflows/ + icon: https://bitnami.com/assets/stacks/argo-workflow-cli/img/argo-workflow-cli-stack-220x234.png + keywords: + - Devops + - Kubernetes + - Jobs + - Continuous delivery + - Continous deployment + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: argo-workflows + sources: + - https://github.com/bitnami/bitnami-docker-argo-workflow-cli + - https://github.com/bitnami/bitnami-docker-argo-workflow-controller + - https://github.com/bitnami/bitnami-docker-argo-workflow-exec + - https://argoproj.github.io/workflows/ + urls: + - https://charts.bitnami.com/bitnami/argo-workflows-2.2.3.tgz + version: 2.2.3 + aspnet-core: + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.8-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.400-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.46.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.8 + created: "2024-08-13T20:41:00.385296055Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 99e9810bd8869d8e9752479426a343dbb11174f98e4a9b24d2a0832b12050c12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.11.tgz + version: 6.2.11 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.7-debian-12-r4 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.303-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.7 + created: "2024-07-25T03:51:15.877755744Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 5926727ebb228cf626eb74198857febd2ee6521eb334ecb9e38b262a7817820c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.10.tgz + version: 6.2.10 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.7-debian-12-r3 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.303-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.7 + created: "2024-07-24T04:10:29.496835021Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 479e3af5a80d78598a7717bc799cac7971c3411859fa36f311924b0fde897558 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.9.tgz + version: 6.2.9 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.7-debian-12-r2 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.303-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.7 + created: "2024-07-24T06:33:58.895721256Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 56cbf9119549420b1cb4f9089efa690e12519a1d63211f3ea5ddd0cc994a1ab9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.8.tgz + version: 6.2.8 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.7-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.303-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.7 + created: "2024-07-18T11:14:52.238370532Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: c6e12e8e73749681e18904e3fbaa5e1bb0352afe2eb40b501bae4d8d862115d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.7.tgz + version: 6.2.7 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.7-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.303-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.7 + created: "2024-07-09T22:39:36.209831453Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: d1afb6f7b48e8afe14bcbff1838a3838b640a1f8c6e06dfe36a07c3a73e015d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.6.tgz + version: 6.2.6 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.6-debian-12-r2 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.302-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.6 + created: "2024-07-03T18:03:10.084890621Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: b4e8403ddfb52967eabf15ff6fe9eeeb8bf4a646c2611936c0ee762104a355d2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.5.tgz + version: 6.2.5 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.6-debian-12-r2 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.302-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.6 + created: "2024-07-03T07:42:55.483373249Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 011fcb573c5a08b4d685653d9d972d71c3163588b9ff1664f9014bde47998142 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.4.tgz + version: 6.2.4 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.6-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.302-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.6 + created: "2024-06-18T11:35:25.562151268Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: aec9714b10b9c0b8bec1c73ff431cbfc309d0932c47fdc985d1fba0a8c4a5aaf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.3.tgz + version: 6.2.3 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.6-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.302-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.6 + created: "2024-06-17T12:15:42.323952017Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: fa598539da9f005dd73090311027ada8445629aa0eff96f4175580c4108145fd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.2.tgz + version: 6.2.2 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.6-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.301-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.6 + created: "2024-06-06T15:26:55.936986338Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: ebda5cfd9542e3ce7291896224e87c92df0c437aac3310317f15b5c8f7450713 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.1.tgz + version: 6.2.1 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.6-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.300-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.6 + created: "2024-06-05T07:50:55.381415471Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 12038f6e6eb07aff352d96c4c320180755549d92a62121ecee9b9024aa9069c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.2.0.tgz + version: 6.2.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.6-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.300-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.6 + created: "2024-06-04T09:43:44.207633279Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 77121522588daeffa2d26a111c40acf3ee7e51b28ff51421a8362f412d03ee04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.1.2.tgz + version: 6.1.2 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.6-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.300-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.6 + created: "2024-05-29T00:22:04.945432597Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: a13ca0b0665866fd761b5d80b46c5d306266d2d24f4f6126a39e333f6769b620 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.1.1.tgz + version: 6.1.1 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.5-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.300-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.5 + created: "2024-05-21T14:19:39.799805725Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: c55379da53f35b0c63aa4796eeb78ff9b91cb075f5cd66457f1b54fd9bebec89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.1.0.tgz + version: 6.1.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.5-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.300-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.5 + created: "2024-05-20T10:17:47.115969418Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 06b37b65ca6a2a23a66b9ca2ae60beb84464cea756553264ce77581c85229644 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.0.8.tgz + version: 6.0.8 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.5-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.300-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.5 + created: "2024-05-17T23:59:26.578385069Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: e34a88e45219f13e00be9ec46add8dec7e2dddb1f49ff4ee0e4f7ccc6527e959 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.0.7.tgz + version: 6.0.7 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.5-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.300-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.5 + created: "2024-05-15T15:32:45.712437687Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: b2a272beffcb84175d50b3bc9630edd7d60de653acd3b49cb1903e0e46cbb71b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.0.6.tgz + version: 6.0.6 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.5-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.300-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.5 + created: "2024-05-15T09:03:53.111041612Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: fb24273cccfb5995f862f1ad5b63632579e63d899d6765fa2776a38f3814f5b8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.0.5.tgz + version: 6.0.5 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.5-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.300-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.5 + created: "2024-05-14T21:11:41.532484061Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 9e077f5f0e7d6964a1969ac75e748ef8a6314ff955ddc42ec0729e2208613bee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.0.4.tgz + version: 6.0.4 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.4-debian-12-r5 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.204-debian-12-r5 + - name: git + image: docker.io/bitnami/git:2.45.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.4 + created: "2024-05-13T21:35:05.527457182Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 830b19c3ccb3bd5905297a82bd76a194178561b47b559c6155af8563271d471c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.0.3.tgz + version: 6.0.3 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.4-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.204-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.4 + created: "2024-04-09T23:04:16.557777961Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 5a7e42295023393d546b2df96cd5bb95af66db5e6720ec8188c57b210a031976 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.0.2.tgz + version: 6.0.2 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.3-debian-12-r3 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.203-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.3 + created: "2024-04-05T23:39:49.18092798Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 02964b0e17cc52dbf9ff00bac313399178cb681502c3c55c55b19492feeafc3b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.0.1.tgz + version: 6.0.1 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.3-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.200-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.3 + created: "2024-04-03T15:04:08.329229833Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: a97f513b7d58d50af60c1493ad735c25bdaac0e5ec657dabc396a5d2c075bb10 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-6.0.0.tgz + version: 6.0.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.3-debian-12-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.200-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.3 + created: "2024-03-12T20:05:04.014412093Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 4c9817d766ff18f51347656b2d0b89d3da06e1784fcca91d4464f59734b377c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.7.1.tgz + version: 5.7.1 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.2-debian-12-r2 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.200-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.2 + created: "2024-03-06T14:15:58.576095366Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 7f1d300b2f0ef6dccf3afb85e620a79ca85da0573cae80fc571994471aed95a1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.7.0.tgz + version: 5.7.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.2-debian-12-r2 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.200-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.2 + created: "2024-02-21T16:13:12.296008135Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: f34021b210fab7a49edb9a70c9ecd5ac4246e34be5c5b5beec072010004e235f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.6.2.tgz + version: 5.6.2 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.2-debian-12-r1 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.200-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.2 + created: "2024-02-21T12:20:57.351675228Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 82cfe7ca854c4c1ba6017acfaec14c1b703b16fdb326a39e5676e3e2129106f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.6.1.tgz + version: 5.6.1 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.2-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.200-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.1-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.2 + created: "2024-02-15T12:27:05.180830859Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 04a1e85c5a1ef25bb63e9948e687f1ec360cf5ca4063741519e39afbb1e7366c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.5.0.tgz + version: 5.5.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.2-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.200-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.1-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.2 + created: "2024-02-14T09:34:55.642626105Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 5a2968b8c1be6bb22f8dab1976a019b5ae04070cba9adec633c5853a77833f44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.4.0.tgz + version: 5.4.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.2-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.200-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.1-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.2 + created: "2024-02-13T23:25:55.735614084Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: fdf5611e27cebfbd9614d0ef7f88ae0060c9879f1626087d07d6f1b8a6f99788 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.3.4.tgz + version: 5.3.4 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.1-debian-11-r3 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.101-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.1 + created: "2024-02-02T18:40:23.904612894Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 1d0446cef4aa59be6790f935447149d2e1b561ade53a9858dad5f57471df4e55 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.3.3.tgz + version: 5.3.3 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.1-debian-11-r2 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.101-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.1 + created: "2024-01-30T15:21:06.501632772Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 8060f524584ade528de5d956bc9e40c8d33f4f2281da8cd38073e53b49ab0ca8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.3.2.tgz + version: 5.3.2 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.1-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.101-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.1 + created: "2024-01-22T13:32:35.537010701Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: c838f0a50c5284fc430627af4b80df850553a51e8b851eaab514cdd7133e6699 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.3.0.tgz + version: 5.3.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.1-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.101-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.1 + created: "2024-01-18T14:22:54.360283531Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 9f8721981355802fc7e339cbb244239ba30383bfb93013b74473d822171928fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.2.1.tgz + version: 5.2.1 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.1-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.100-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.1 + created: "2024-01-17T11:58:11.354622754Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 961d8fcff10dd4bbd1e779a33c0afd8e2cf3d73c58b8e0efc2f31caa3784b921 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.2.0.tgz + version: 5.2.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.1-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.100-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.1 + created: "2024-01-15T08:36:27.511411249Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: b790dfae31ededa370ba62b8a5a1bdbeba4e227afccf96ee9ed774da7afce9d9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.1.1.tgz + version: 5.1.1 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.1-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.100-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.1 + created: "2024-01-10T13:30:19.004727549Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 13b75f835afde487bdfb7c78ca9d85dd45e8f487f95bb41aa8aba6053367bebd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.1.0.tgz + version: 5.1.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.1-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.100-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.1 + created: "2024-01-09T20:22:16.875085201Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 57ae5e46246de66fc86d11e34ce8e3ba18bb8b3c645d1fe41f2ffeaa9e59e446 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.0.5.tgz + version: 5.0.5 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.0-debian-11-r4 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.100-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2024-01-08T13:09:09.550977247Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 1a5717de24d384cc31a722fa7a70fa202df7e8a0a611d94c6f0e25489a1d0b01 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.0.4.tgz + version: 5.0.4 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.0-debian-11-r4 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.100-debian-11-r3 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2024-01-03T11:47:57.322070384Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 65aad66f89b714e0232e0cb317c2d61b8131c182eebf7e9d4f41128bb8652ec5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.0.3.tgz + version: 5.0.3 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.0-debian-11-r4 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.100-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2024-01-03T09:10:46.776647052Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 41d23af36616d7ad6c265e89168a77865c1eb0347f1eaaa1a824a0cedc922136 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.0.2.tgz + version: 5.0.2 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.0-debian-11-r1 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.100-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2023-11-29T19:25:40.811471195Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 8934433a401153b76c3aefce093e104d34de6ee333eeb6ef40c41a1fe8fade7f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.0.1.tgz + version: 5.0.1 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:8.0.0-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:8.0.100-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2023-11-28T15:43:09.355110777Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: cac675b1f60267c292c1b8135392ae08869e5840fe2b0eff6fd5fc8a9a1c3566 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-5.0.0.tgz + version: 5.0.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.14-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.404-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.14 + created: "2023-11-21T18:12:15.59974004Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: a24c4a23b12c58fbcde357acf0efb9efee79fa5d635e9b2c5d84d18d92639209 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.10.tgz + version: 4.4.10 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.14-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.404-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.14 + created: "2023-11-14T20:33:54.914653824Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 11da89ff8db6ce4bbb857642d81515ed5839faa53f1e64d7f29a9939e936897b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.9.tgz + version: 4.4.9 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.13-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.403-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.13 + created: "2023-11-08T16:17:57.317093739Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 47672727eb1eae529612ed364a3ff1dc078ddf8ec475bc18164b652105842e73 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.8.tgz + version: 4.4.8 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.13-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.402-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.13 + created: "2023-10-24T21:00:26.023048332Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 5ced5a38ffb4a79a98d382feca600ba9c00aec7996b790966c7b148341061e19 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.7.tgz + version: 4.4.7 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.12-debian-11-r1 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.402-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.12 + created: "2023-10-17T13:01:14.177319683Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: c936270c2df82887bf2c4dc29252511a07abaf7905bddbeba02ab8848538c029 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.6.tgz + version: 4.4.6 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.12-debian-11-r1 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.402-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.12 + created: "2023-10-12T15:05:39.006232218Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: e095c1ee2b9c3ca02d704621ebc6348d8c6344b3de669da38db69cdd33da61ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.5.tgz + version: 4.4.5 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.12-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.401-debian-11-r19 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r41 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.12 + created: "2023-10-11T03:31:57.738352634Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: cb3e1a85df22532debfa8d1bf27541e3840a30648693ba483cac35bfb7be1b8e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.4.tgz + version: 4.4.4 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.11-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.401-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.11 + created: "2023-10-09T12:18:56.290303338Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 21f941118f67ccb659f9baddd5168ea71be6582bbd14aea1b6900d553e961282 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.3.tgz + version: 4.4.3 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.11-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.401-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.11 + created: "2023-09-12T22:22:39.294997926Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 155773e8a870275a608c0506b018d1b7080eddb81e8fb54f8c66a9f40741dfaa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.2.tgz + version: 4.4.2 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.10-debian-11-r10 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.400-debian-11-r8 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.10 + created: "2023-09-06T08:08:12.686417915Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 8f267397adbb0bde191195ec2ccb4408e171476cfb14ab5a3ae2dde5d2e98591 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.1.tgz + version: 4.4.1 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.10-debian-11-r10 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.400-debian-11-r8 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.10 + created: "2023-08-22T16:04:46.749305183Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 7aef7f84eaffcb2b622125219e777f18a81d9d22e79202c06854df3200d29c3b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.4.0.tgz + version: 4.4.0 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.10-debian-11-r10 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.400-debian-11-r8 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.10 + created: "2023-08-19T10:50:23.127941218Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 2b36d3392a8da0a25a1b2f15ef146ff2233adece4b0c715f3c94ee8535fdb44f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.3.8.tgz + version: 4.3.8 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.10-debian-11-r5 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.400-debian-11-r5 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.10 + created: "2023-08-17T13:10:52.552764096Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 9a0b7ec1e5b35c6151d56e49c0bc5c4882a4ba46c79cfed06d13c9b7093e44bf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.3.7.tgz + version: 4.3.7 + - annotations: + category: DeveloperTools + images: | + - name: aspnet-core + image: docker.io/bitnami/aspnet-core:7.0.10-debian-11-r0 + - name: dotnet-sdk + image: docker.io/bitnami/dotnet-sdk:7.0.400-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r64 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.10 + created: "2023-08-08T23:47:26.532863845Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: d968e90b1df1cada486def2672ceada116d2b04f7b59cdee1ba460c81320a8ca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.3.6.tgz + version: 4.3.6 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.9 + created: "2023-07-25T06:30:08.357870758Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 0c8b61588508c638e59ff4652d622507c95ed4a12278848440246efbe288a130 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.3.5.tgz + version: 4.3.5 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.9 + created: "2023-07-21T14:30:49.735748083Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: edc17d689d595074771c2061c027c3b3df21d036cf1623b7a621c35b5bc8a08f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.3.4.tgz + version: 4.3.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.9 + created: "2023-07-12T00:27:56.614315504Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 842935de62240a3609dad83e25ebf16013f2f164cf0b1bb5cf948561d7efef57 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.3.3.tgz + version: 4.3.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.8 + created: "2023-06-23T06:14:24.106179241Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 276715a86f567e7ad5e3c4eff42d03af065f9fb38537ead15bef023914ad8525 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.3.2.tgz + version: 4.3.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.7 + created: "2023-06-16T08:23:36.389905527Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 5fc9f13cf7ca0c336933509b1a33f28e725df19d0c4567fc2c6fc5a2b693b1ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.3.1.tgz + version: 4.3.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.7 + created: "2023-06-13T20:14:25.048812782Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 9defaf22ff35a3123fdde2e7c33107c6450e2977c3cc4e2669134f8535d08bf1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.2.2.tgz + version: 4.2.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.5 + created: "2023-05-21T14:44:52.230665425Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: adf9f1bc25c73a71e7e400ce314f07519b37a7b392ebfb7d8eacb65931f9cc8a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.2.1.tgz + version: 4.2.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.5 + created: "2023-05-09T12:29:06.425948725Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: adedaeb84259100f148ac0e3779662186edc2af5e2de2550e1b6aa626f97dddf + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.1.1.tgz + version: 4.1.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.5 + created: "2023-04-11T23:42:25.521424973Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 8200f9d76b80d16203477e88c4e2b67655823dd3af8daaef3600320c0a45edb8 + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.11.tgz + version: 4.0.11 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.4 + created: "2023-04-01T11:55:25.305814312Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 660c8b498e8264c1e549984724d2a79ae251aeea400bdd1f54a051a9ecd9ca14 + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.10.tgz + version: 4.0.10 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.4 + created: "2023-03-18T22:18:13.469091775Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: e4ed1c245cea70ea786c85c385f4ab9a996b7cc4566a7bc7b90cd1e70eb47276 + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.9.tgz + version: 4.0.9 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.4 + created: "2023-03-14T20:53:20.021038717Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 8a2fca257b2faa476a49436f5133d2498cd5e3d8c04672eaa7048a17360f1fbf + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.8.tgz + version: 4.0.8 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.3 + created: "2023-03-01T10:48:15.284367843Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 3cc72c10160dc3c9eba14e20853ab8b1028e5268e6c2b48cc12ca61accdf99a8 + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.7.tgz + version: 4.0.7 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.3 + created: "2023-02-17T15:48:56.156082442Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 691a3b82c31e5d9b64ff4d866b642c8312094f71e2e0eb17a98901739dad0d5b + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.6.tgz + version: 4.0.6 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.3 + created: "2023-02-15T01:20:15.54305703Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: aa0898c110ca8a3607a0bab47941e3c6e908e46bba019d7519026e52f99127e5 + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.5.tgz + version: 4.0.5 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.2 + created: "2023-02-09T20:23:40.875605965Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 0a8c04203a724a4025cb48138bb71c9249edeb3792328a050e87953d805d53fa + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.4.tgz + version: 4.0.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.0.2 + created: "2023-01-31T08:39:18.392953163Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: aad447abb764fc1a98e080592a7c542f992bfac92ce100a7b731f3d4aefd2c8d + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.3.tgz + version: 4.0.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 7.0.2 + created: "2023-01-10T20:03:46.012002919Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 47f60ce33a6a5f4d333886cf462cf5d02cea02f7d8a4ba11f23a68717e359f00 + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.2.tgz + version: 4.0.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 7.0.1 + created: "2022-12-13T19:54:39.809482055Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: fae97b8a3c008f1c38f23642f17698e2d07619a0422d5a12c39ea74e703e4803 + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.1.tgz + version: 4.0.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 7.0.0 + created: "2022-11-23T15:21:59.396022911Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: b8dc1262512be8b4bdfb03cdec9159262c6c3ae94ab24135f78f726e8c34aa44 + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-4.0.0.tgz + version: 4.0.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.11 + created: "2022-11-09T06:43:20.182155906Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 71fa9391ff5da2f29729569dc716214520fcac3d92e9e2283c03f231719a2bca + home: https://github.com/bitnami/charts/tree/main/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.5.6.tgz + version: 3.5.6 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.10 + created: "2022-10-11T21:02:48.18983995Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: ae377d9f015210e42a80acefff3d42396c78bfda1c6190b2ac1c846688362da0 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.5.5.tgz + version: 3.5.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.9 + created: "2022-09-21T10:23:06.909421319Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 9d1e2cf0417e308162b63614f30f867b2fb9537b6471d1071c0e018ff6e6ec3e + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.5.4.tgz + version: 3.5.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.9 + created: "2022-09-13T20:23:58.077687592Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: 1ba021d6a103f3733fbf470e1548c9d779138aed240f3b3864ff55b9298ed70c + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.5.3.tgz + version: 3.5.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.8 + created: "2022-09-01T12:27:51.658057451Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: fc7e108969f8328dd609748c136251d7e479513e4c23c2e2d7cc1b1b6c378977 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.5.2.tgz + version: 3.5.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.8 + created: "2022-08-23T23:08:47.895705348Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:b3fc561538a621d42b65086527ffdf24a27305104e980422d580c47ffe73d8ff + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.5.1.tgz + version: 3.5.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.8 + created: "2022-08-22T20:11:14.224612802Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:b29f2addad2ea5938a35e0f27d5a2af5b3e744d2a9861caef00e30aba13c1140 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.5.0.tgz + version: 3.5.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.8 + created: "2022-08-11T14:03:42.383967381Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:512c6d03e9def3800ca64cd7300671fe32af248558fc0759736fed4e0292fdff + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.21.tgz + version: 3.4.21 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.8 + created: "2022-08-09T22:32:14.502874906Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:520ac9774f404140aa502f1222dc6d9c9bd3d872f1b82841f738ba7f10a59ece + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.20.tgz + version: 3.4.20 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.7 + created: "2022-08-09T15:02:20.804331175Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:aa843efd542900d1599ea7a223c208f1e396caf04b1def2d5dc5644c25806756 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.19.tgz + version: 3.4.19 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.7 + created: "2022-08-04T22:59:10.135004066Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:9ef2c5d38169762abed50d4615dc4cfaeabd195f0552bb51080e212921d7e52a + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.18.tgz + version: 3.4.18 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.7 + created: "2022-08-04T08:36:00.328647081Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:3ebbcd704bd85a6fa37178df4f0c8c749870b3d2bc7df5459bac68679eb09286 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.17.tgz + version: 3.4.17 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.7 + created: "2022-08-02T09:50:22.080755948Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:1fc22d4985d532d4a481ab10a9fce2ec5484077b4c98d4f1ab64474fe047235e + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.16.tgz + version: 3.4.16 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.7 + created: "2022-07-29T12:34:12.74010734Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:4a1900ecbc8e445a8bcde7d67728f0b33b3c1957fe5671a320173fee6721a431 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.15.tgz + version: 3.4.15 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.7 + created: "2022-07-27T09:02:18.786352551Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:0657eb3cc60b380a79f1ae793cb10e4c389ce4eb283ecc3d7ce5b8499ee72d2d + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.13.tgz + version: 3.4.13 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.7 + created: "2022-07-13T03:51:04.195568064Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:f44d70bc8c7966edcf6ace0ed07e4bfe2f1ba0f992e95cd43eb9d9122c841eb9 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.12.tgz + version: 3.4.12 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.6 + created: "2022-07-09T17:50:33.753672275Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:370e33e2cf42cddcbfc757ea24ee02df4894724bc22b3019aed8a2c54da1bfd5 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.11.tgz + version: 3.4.11 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.6 + created: "2022-07-06T18:42:15.095055253Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:43070b7bb93ed47d9c13537bcab943f2d14453e70dfd94ab29cf8323e099ca90 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.10.tgz + version: 3.4.10 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.6 + created: "2022-07-04T18:23:15.77542004Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:638350d127322278d4c4cf24a51a8bf37ef1ebebbd01d410733c6a9bf5709ebc + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.9.tgz + version: 3.4.9 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.6 + created: "2022-07-01T09:52:02.106446769Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:7d615f0a61d1824aeb94d8d0cde1672587fba293e5d275d6fa751edec6de3e91 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.8.tgz + version: 3.4.8 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.6 + created: "2022-06-23T22:30:01.455585197Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:a53b9632a63a851b36aefdbaaf90ffdd3dd1fd51261508590f56b6091f00a601 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.7.tgz + version: 3.4.7 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.6 + created: "2022-06-15T05:12:40.331593009Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:788d141ba76959f13784e35062dabb2d5fb5ee0b10b94fc287cf33fd4c96e217 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.6.tgz + version: 3.4.6 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.5 + created: "2022-06-13T10:04:37.014576386Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:bfc5b1c412242e34b8816c6a4a281e1f453fb1899d6fabae83fb884fe801838b + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.5.tgz + version: 3.4.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.5 + created: "2022-06-10T14:51:59.915486215Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:af148e6bccc164f1b0ef64985a728bde6ab7d268d6d194cfcf717e1487696477 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.4.tgz + version: 3.4.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.5 + created: "2022-06-08T14:58:50.330212051Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:75081139fe5232f211d0caadf5eacd947d1a0ef216cb3a107bb05dd5c4ca5aa2 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.3.tgz + version: 3.4.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.5 + created: "2022-06-06T22:37:22.692057912Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:9397d3da464055434d8bf401badc240cc3b592b646bed303645279cefecb57f7 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.2.tgz + version: 3.4.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 6.0.5 + created: "2022-06-03T14:42:35.674568782Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ASP.NET Core is an open-source framework for web application development + created by Microsoft. It runs on both the full .NET Framework, on Windows, and + the cross-platform .NET Core. + digest: sha256:4879242780c7fe57e1acd3c59871ab103a826fd74d9e9aadcf5b5042de7168a6 + home: https://github.com/bitnami/charts/tree/master/bitnami/aspnet-core + icon: https://bitnami.com/assets/stacks/aspnet-core/img/aspnet-core-stack-220x234.png + keywords: + - asp.net + - dotnet + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: aspnet-core + sources: + - https://github.com/bitnami/bitnami-docker-aspnet-core + - https://dotnet.microsoft.com/apps/aspnet + urls: + - https://charts.bitnami.com/bitnami/aspnet-core-3.4.1.tgz + version: 3.4.1 + cassandra: + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r9 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r27 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-31T14:40:34.232336585Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 1a1d0921d2e2b23099811776729f855798bab2f8f72e6bcf4d23933bdf806db7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.12.tgz + version: 11.3.12 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r9 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r27 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-25T04:33:37.107788496Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 7ca5e4ad3f22a6ebe9f933be2e394b1703677834668b396d51b27a4eea745e24 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.11.tgz + version: 11.3.11 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r8 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-24T06:35:26.402311531Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 98fcb016d47716a3f6f626e040ee3b994c07edfdfbdd83b0fc6dc7087f55bd31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.10.tgz + version: 11.3.10 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r7 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r25 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-23T22:41:28.415210386Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 4c764d9854dc63d742fc005ec1efa514cb14dffc089fbfb36485bc2d3b10d93b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.9.tgz + version: 11.3.9 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r6 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-23T15:12:13.962157914Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 0e19e83658101dde9202c61e8e9611fbfb4d1c80b149239ae5cca47857125699 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.8.tgz + version: 11.3.8 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r4 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-17T06:43:55.523328656Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: c0951ebf8bf58c154d6e684013035ddf4829c98e163f43619197ac2037ceb417 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.7.tgz + version: 11.3.7 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r4 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-16T11:16:51.815335217Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: ee61a0c953394be088405a92a2ce182aa998a394778b35f28d85cedb5773565d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.6.tgz + version: 11.3.6 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r4 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-12T10:18:24.762453293Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: b9be0b75e8471bb03b59cb08f844e9c97ac50f0d09525fe6e1a0e8e381d19f1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.5.tgz + version: 11.3.5 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r2 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-03T08:22:49.505154804Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: a49d8c412b9f24c83161ebff58a6074e6a289a5372c53faed9e00f2cbd3f8f6a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.4.tgz + version: 11.3.4 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r0 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-18T11:48:25.5419142Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: d352752d12653bc260d23c95fa23420e633d0c640eaa304b4f87163a666ca4db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.3.tgz + version: 11.3.3 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r0 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-17T12:26:47.168455689Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: a267d7edc65a454d333dde627cb48c81aad0435510eb5195cc0b7ba1c60d2e44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.2.tgz + version: 11.3.2 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r0 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-06T15:41:35.424631799Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: e8074b21ad82a6a102e4cdee6dd2edd534cde1019ec620b760da4f41d4ced566 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.1.tgz + version: 11.3.1 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r0 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r22 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-05T10:32:33.032052943Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: d1194961fd4b061f496b4f43a6512a5d88fcfe1edbdedf4bae40ef83c994c17f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.3.0.tgz + version: 11.3.0 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r0 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r22 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-04T09:43:55.97435761Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 309bf7e982f330fedb734b36f853ad520a601f5cce58dd842647c3e02afc71e8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.2.1.tgz + version: 11.2.1 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.5-debian-12-r0 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r22 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-05-20T19:47:19.090887369Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 8908ee9e8d139a6befb29de6ccd2e9747f5657b8f7ab7594f31adc6d7a4f2919 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.1.8.tgz + version: 11.1.8 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r14 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r22 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-05-18T00:09:07.544765952Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 5ab0b20fd858b9ae2778b9b123d445173eb6a7f6604cff10d8291735819eeb2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.1.7.tgz + version: 11.1.7 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r14 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r22 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-05-15T08:01:45.493688371Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 365b1265251080d5464db51d12bbd229db04eac01e6551bb46b327976e75a87d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.1.6.tgz + version: 11.1.6 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r14 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r22 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-05-13T20:01:50.83032197Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: b37d37f6e203d33c1c53300fd83616a4cea682201a97200cfda0319a9fab81f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.1.5.tgz + version: 11.1.5 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r13 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r21 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-05-13T16:57:47.945755479Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 46e9ca9111a028a167ddc1d08854b240b54637f1325b9544db5ee7a89fcdb4f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.1.4.tgz + version: 11.1.4 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r12 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r21 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-05-08T10:46:20.774748727Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: a0014371bbb6e576b755035aab55f0a2f51cedf416f0a7c1a1d112a7b71ac45f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.1.3.tgz + version: 11.1.3 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r11 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r21 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-05-07T23:16:12.327414467Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 6f58beb809633a80e4154897afc76a5cb937dfa95ffba209495cff35c1107e52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.1.2.tgz + version: 11.1.2 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r7 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r19 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-04-22T11:40:33.362666208Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: e6bed74340feffe30356b91fcd4a233eafb180b5bd629eb1f9d7bde2608ed7de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.1.1.tgz + version: 11.1.1 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r7 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r19 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-04-12T10:21:07.428675484Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 36f411cee4c6802abe035d5fd4a59da9adbb06f24f735384964634145322700b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.1.0.tgz + version: 11.1.0 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r7 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r19 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-04-09T08:14:10.767680625Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 084f4dd7a9b2cc5b7e4a334961ef9fe0a20ede401e01d63bc0d3f10fa81e4dfb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.0.3.tgz + version: 11.0.3 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r7 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r19 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-04-05T17:12:14.722672905Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 871553625fa32cd80478f8a1901ca07e5c04acb62cdb1a7ec1c5131be5e38251 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.0.2.tgz + version: 11.0.2 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r5 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-03-26T10:06:08.748643058Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: f2933c1d8824f0d5dc14e97b073442a49fc1a693c156d0571a0c5c486863c1a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.0.1.tgz + version: 11.0.1 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r4 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-03-18T11:35:32.05582417Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 40bbd0b96ea59024f64bc9894517b6a429e70a60974997222758538a6ca444ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-11.0.0.tgz + version: 11.0.0 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r4 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-03-07T11:13:18.043104513Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: ddd4181f57bbdb17cf98242633ba6c7e61c0912a2b553a98a662a843722a053a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.12.1.tgz + version: 10.12.1 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r3 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-03-06T09:13:22.618160415Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: e53468e9637d8b11b3ce421252f2a69ac46cf6b1d3d2b665b49240d70c357fb2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.12.0.tgz + version: 10.12.0 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r3 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-02-21T16:29:56.603602663Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 202ddf76264394a340381e6676b2fdfe344adfcbc817c5765bb87eadc8187c9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.11.2.tgz + version: 10.11.2 + - annotations: + category: Database + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-12-r2 + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-02-21T12:36:25.979747076Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 0d6fc9215a2ea01cf3b73e73403745644e55687b85fbe200d174b45f2fdd264a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.11.1.tgz + version: 10.11.1 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r448 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r107 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-02-20T09:45:09.641336927Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 65e44e4e34adb12e9d5ebac590728f579d541fac98fc2b7d600d1d550fcd2203 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.10.0.tgz + version: 10.10.0 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r448 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r107 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-02-14T20:25:47.747046685Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: a8ebe978a60106ba0f8ae7ad2d1ae2ef6669b73100354e9e12d7b1c732814d92 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.9.1.tgz + version: 10.9.1 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r436 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r85 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2024-02-09T09:39:31.818801245Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 8e9fe4e335cbca53ae91feaac2c9cefda2d6000d023755e84d3eccdd9da38065 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.9.0.tgz + version: 10.9.0 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r436 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r85 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2024-02-02T16:39:52.245203743Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: ef7a4b68ad4694d20097a498f134f6257fc622aba64e7d12fe7efc96d3d61425 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.8.3.tgz + version: 10.8.3 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r435 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r84 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2024-01-29T07:15:09.067297739Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 5b6adeb11d5aabb7d19c238254008e75658d269a06ae95095327e41bef6a761a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.8.2.tgz + version: 10.8.2 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r433 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r81 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2024-01-26T08:32:10.02412024Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: d7eef2ecb7ef7018d34a1b5e74cc454a827c486bb1d824e04dbf4be9cb0535f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.8.1.tgz + version: 10.8.1 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r433 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r81 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2024-01-19T11:03:03.547788712Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 534578d4f208a40985dfb0757a3269f2311b2f4671c63e8d7945de0a45131171 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.8.0.tgz + version: 10.8.0 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r433 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r81 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2024-01-18T16:38:15.525732472Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 08fc75e2c4d13d285be5de72cf788f141cc5bee81965f45f326f832907181e1b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.7.1.tgz + version: 10.7.1 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r431 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r78 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2024-01-16T14:53:56.703105908Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: a892abb3a6af7ce9823a7102425370db9613a3d3f72450e0ca4e52602a06afbc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.7.0.tgz + version: 10.7.0 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r431 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r78 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2024-01-12T13:37:52.457669785Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 976b14f3b80d2fbfce01afa1fddaac1e66f81680bbfc05782702b835d0bf2fee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.6.9.tgz + version: 10.6.9 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r431 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r78 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-12-13T12:45:48.561142005Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 0bef017990059f73a930717e9947b88c22c8eb23104c30503d5c07255ebb10af + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.6.8.tgz + version: 10.6.8 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r431 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r77 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-12-13T11:57:31.300700505Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: bc98cfbc55c8e133a1f2796035424aa7647a80add3eb1ff9a25d8fbb1a47bc89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.6.7.tgz + version: 10.6.7 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r431 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r76 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-11-21T18:26:52.771259789Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 7ff5499f6f12a7ff005bebf3dfb0721b53af41c76decc7fe6b617627c0501d81 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.6.6.tgz + version: 10.6.6 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r430 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r75 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-11-16T11:00:37.927889333Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 9f4c420d766c7ace00cd20b60d880f0af87be271d29ab9a23b839481a2184861 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.6.5.tgz + version: 10.6.5 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r430 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r75 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-11-15T19:18:15.262937996Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 61525a76da6a6c4f18c79ea8ff55d2fc27f0f846b4e92d3e7b96e6532192d3c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.6.4.tgz + version: 10.6.4 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r429 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r74 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-11-15T13:33:12.351196185Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 707aa78db9d924b035cbbd080750fc5e03f32c3d06f66471e35f06da97c773c2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.6.3.tgz + version: 10.6.3 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r429 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r73 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-11-08T17:48:01.238344077Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 1ce83d4152b68eb39b855885a4ad113207a6b38340e89f83b8e435cae047cbb2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.6.2.tgz + version: 10.6.2 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r429 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r73 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-11-07T12:09:29.758365502Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: a2265b0b35fd99a6479f6d0d657fc45c8f5324787817565ce3de700e1d95d76f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.6.1.tgz + version: 10.6.1 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r429 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r71 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-10-31T15:33:03.644578705Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 2721f3b6e4f9c30320073a52bb982e65603f177785eba877c4fd7129524bc854 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.6.0.tgz + version: 10.6.0 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r429 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r71 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-10-12T15:14:03.787123383Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: a0a334bcb2b82c1b2994780e16d0c041fc306460074cef800b095a073645a712 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.5.8.tgz + version: 10.5.8 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r423 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r83 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-10-09T12:46:27.407656924Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 6fd554ff2e83a5b21c07c1be504ba119afbda6b865bbab236fc548682f9bdfdc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.5.6.tgz + version: 10.5.6 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r423 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r83 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-10-01T12:48:57.582051879Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 2c49ae2d6cb0d970a2fbbddab85796918381ce81aa11ed626a2f93a2a1b9c770 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.5.5.tgz + version: 10.5.5 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r394 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r37 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-09-27T11:24:23.590853729Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 1c4b346fc8f03c584dae50e1a29e3ec27feab583a7b73c48b6d90d1f07423b55 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.5.4.tgz + version: 10.5.4 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r394 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r37 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-09-12T10:05:23.244634876Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 186a083b25dad8d2c6232f3e857a6a99f0228255a1669d4add94f33a98a90939 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.5.3.tgz + version: 10.5.3 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r394 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r37 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-09-11T15:14:09.827358073Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: f336e4ca06fcd583cddaa114694246b5ee5c69238b2aff18ba451ddd33ee0702 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.5.2.tgz + version: 10.5.2 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r383 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-08-28T17:18:57.73673966Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 3f3151e4e1e20a6bd0b8f196ebc19faeb5e8b050708cacb729c0be974035f52e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.5.1.tgz + version: 10.5.1 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r383 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-08-22T14:30:03.302108686Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: c739979fa3d4a8deba908c48958519a84644d314e2566aab962e44bdc295b4ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.5.0.tgz + version: 10.5.0 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r383 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-08-19T12:03:15.579553956Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 1b70f777296c9758391f7d5aea557a03f656ab68d85a94d8b2841d7e92bd28ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.4.8.tgz + version: 10.4.8 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r378 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-08-18T07:18:30.432255565Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: a6e98f568ebbc54ecd1cc6955966fd666bff33a890b7d542860e796762a462c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.4.7.tgz + version: 10.4.7 + - annotations: + category: Database + images: | + - name: cassandra-exporter + image: docker.io/bitnami/cassandra-exporter:2.3.8-debian-11-r378 + - name: cassandra + image: docker.io/bitnami/cassandra:4.1.3-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-08-17T13:14:12.945200412Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 8562eb696638d6104be87541519bf4481b5d295ee3316845ee9f7f861baef55e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.4.6.tgz + version: 10.4.6 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-07-27T08:57:13.743592928Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: a09c265c2ffb9a042686e6d23ff7a3c92845f0432d7e40ece1e8fb85f3b09a9a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.4.5.tgz + version: 10.4.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-07-15T09:28:17.775340928Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: efb7773b5eab8e94ae2c85dce0865fd1636fad627d3313fb1da44b7e52367242 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.4.4.tgz + version: 10.4.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-07-01T06:36:53.801412041Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: cbc11582534fbd01fa10221b34aaab309d48cc7e8a5bb48869cac6787907a503 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.4.3.tgz + version: 10.4.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-05-31T16:25:11.776848498Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 1aebd30ed953a8d4c3cef23800bed58c636b09047a7bd10c99aa7eb817d1368d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.4.2.tgz + version: 10.4.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-05-30T14:51:29.505379547Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 25a5e49b67919011ca1f4ea8b379c9c3a7d61a80a0f5e3a0d4c1cf5813d7b072 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.4.1.tgz + version: 10.4.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-05-22T10:57:55.02147273Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 8cad799aaaa68aa494a9b11138a7af3c663dc60c59e0f24b1196b4d427246675 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.4.0.tgz + version: 10.4.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-05-21T15:21:56.947954585Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 1998804f8223694a909e43e8d994e01c9ae76167a6d792c28574adc7249f2de0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.3.2.tgz + version: 10.3.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-05-16T22:10:37.923372443Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 12a8f0ebe82fb554bc160c37974d42af5b0392eaec4184d0fd634338b1e53640 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cassandra + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.3.1.tgz + version: 10.3.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-05-09T15:46:14.686595957Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 322d156c88210427c1626d6027661a4feee3016eea217db1172b1833e7d8a5f8 + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.2.2.tgz + version: 10.2.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-04-29T19:07:53.962654439Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 5a8233c7b2c0a88c4bcc1987a28a00085f0f72b8867a5ccd2a23668441923329 + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.2.1.tgz + version: 10.2.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-04-03T08:33:38.393167361Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: c233cfa90af3da7e486b820c433e188cf3703fd9998bdea281b29b45c70eb89d + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.1.3.tgz + version: 10.1.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-03-31T08:39:23.380124412Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: ebf78beefd093c12f02b08034440e58e678e5a2cc0626fc827faa14270a39362 + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.1.2.tgz + version: 10.1.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-03-30T19:00:22.852008781Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 7d04a98977637d6fe31a015fc551db877c40bce158d99b5892da144e5511b576 + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.1.1.tgz + version: 10.1.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-03-10T09:35:29.582678433Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 3b2e66ffbf00560ca8185e5b4e66c82209cf2f9a614fbf0d598ec4f4b6d13ec5 + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.1.0.tgz + version: 10.1.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-03-08T10:21:44.704980535Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 98388e1189853930cab729b36c9968e7649a9c5071cc4241abaf798cd4ef218f + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.0.5.tgz + version: 10.0.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-03-01T09:59:48.125852965Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 43bec53bec503894898b6496221fa98eb68a7cdbe49a458ab2444ff82f304f3a + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.0.4.tgz + version: 10.0.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-02-17T16:53:48.030010783Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 1d37aa93c3be3281b90631e425fadd1e1edb8fb976afd7cb6cc6719c958a0d36 + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.0.3.tgz + version: 10.0.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-02-02T08:40:53.604488917Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: f4f2ab85e388ff48e7d1f8cadaa308b7db0c6faf61b2623f92b34baa832b319a + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.0.2.tgz + version: 10.0.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-01-21T14:13:46.319340262Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: de9666711319b7f1ed93a3c17b26cfb905df269a0ade91fafc73253b51ed0379 + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.0.1.tgz + version: 10.0.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.1.0 + created: "2022-12-22T14:05:13.811682172Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: a1624098285f302946e02ad40a3aa1ae9339521026c46c82eb9e1d03a224b16b + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-10.0.0.tgz + version: 10.0.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.7 + created: "2022-12-10T00:24:48.875860778Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 81c9bfea215b291bc6b51ae3f8d85259957e6a4fd57f19152c8ab2b7dcdf294f + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.7.7.tgz + version: 9.7.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.7 + created: "2022-12-02T08:31:35.433067732Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 54181c69f73a9d04fc0a8e0e568620568a6177def2f91deefcd5994bb4486cc1 + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.7.6.tgz + version: 9.7.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.7 + created: "2022-11-22T23:11:01.592107962Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 592170d27fbb3a9b8cb8e895a434bba63cb533c29c24e3c9cc146b736f03975d + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.7.5.tgz + version: 9.7.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.7 + created: "2022-11-15T10:07:30.977632661Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 29c99071aff662fad8ab075b17658973458c8d0adf7b5ccc8616a8c67a63ccb5 + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.7.4.tgz + version: 9.7.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.7 + created: "2022-10-23T22:58:04.483280893Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: e79a6a9e2e5ac71b63f913a8006d2ff32b813a6b4fa6bb6c2433216e5ad1bef9 + home: https://github.com/bitnami/charts/tree/main/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.7.3.tgz + version: 9.7.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.6 + created: "2022-10-11T07:01:35.140139544Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 5cd24fcd8b880cec41c854fd2e27d00aad1d91e09c1d7f7f8208e990303f74dc + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.7.2.tgz + version: 9.7.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.6 + created: "2022-10-05T14:39:08.669060876Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 89374f7c9fd684c18a6969b0962f0008639e2175505ee0dda251c1d991ac45f7 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.7.1.tgz + version: 9.7.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.6 + created: "2022-10-04T11:17:56.950390946Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: ca54bac28fb5d1087c92e2a76c7c16ab95ac7e89326d8e05da55ccb1bf89423e + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.7.0.tgz + version: 9.7.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.6 + created: "2022-09-21T11:06:50.661607564Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 873e5382cb48d5661e24837391fbac452ad669aa1a4fdc0f64ac93b61f380ee5 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.6.1.tgz + version: 9.6.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.6 + created: "2022-09-20T11:22:43.74805977Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 99c5d6e357efeecef4c83337087fffeb9cfabfd27c4f2667e3fb2247f037dd39 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.6.0.tgz + version: 9.6.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.6 + created: "2022-09-13T14:23:00.038569019Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: c3d4d9456a406c372c0b1fec4706f875ae1267c0852728960ffd8f7cd49ecede + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.5.0.tgz + version: 9.5.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.6 + created: "2022-09-06T09:01:36.69213012Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 7e024e630614c150a8f6bdc07f17f5dc517d5ef28221a14fe9a697546211cb1c + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.4.2.tgz + version: 9.4.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.6 + created: "2022-09-05T13:52:46.214706523Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 66ea328e135b592b0055c239d9ca76486e1c63966380e38be3608b17735a231d + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.4.1.tgz + version: 9.4.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.5 + created: "2022-09-02T11:55:22.009919433Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: d2a2741f660311dac99305fdc79fcf08e816d25285809c05d74696f52a150254 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.4.0.tgz + version: 9.4.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.5 + created: "2022-08-24T15:42:17.73365142Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 973ad35297908786ff4c1ea1737ed9873eb3aea0f13257d147828df6003d0740 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.3.2.tgz + version: 9.3.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.5 + created: "2022-08-23T22:02:37.832426669Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: 541e956a5fe6fcd66c3e1e625c045ca68fddf222253fdafe43637fc2c64f4f0e + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.3.1.tgz + version: 9.3.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.5 + created: "2022-08-22T17:03:05.610454906Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:28a0424d009583c2adbe1e91bee99791f021aba171b25b2b7ef73e7b97b98459 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.3.0.tgz + version: 9.3.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.5 + created: "2022-08-09T08:40:39.781577078Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:cf186744047541f975ee10f38931c37814f290c3dce01bbc60ea2af64b1b9bdc + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.12.tgz + version: 9.2.12 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.5 + created: "2022-08-04T21:47:05.107577682Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:ff28896340f24edfb18842b01c5572edad3107ce91bbb9d5b46431e5731448f8 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.11.tgz + version: 9.2.11 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.5 + created: "2022-08-03T08:44:36.744441383Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:b970921235e811bb21011efae058e196f82bc224cc5e10f2c86f4be72f840760 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.10.tgz + version: 9.2.10 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.5 + created: "2022-08-02T09:18:39.109272728Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:71c20d0941dac6a27ac316b36165176ba9a782570b5114ca0d7d48fefa4aa455 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.9.tgz + version: 9.2.9 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.5 + created: "2022-07-19T02:23:10.406600411Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:4e72922a254b8641d7d837e1bf12401994c7a4338e36a56a2a7f98b1a64e1145 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/bitnami-docker-cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.8.tgz + version: 9.2.8 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.4 + created: "2022-07-01T09:53:42.537369361Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:42a685b518c24dd56b4a4acb425f3c0df342b9e1f4f188db56bf1a95bc8631c8 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/bitnami-docker-cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.7.tgz + version: 9.2.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.4 + created: "2022-06-20T09:56:20.323313894Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:c60decf3a8ab2b2e6ff7bfc8f1123764bc54bd028575d9192749079b64689ef4 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/bitnami-docker-cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.6.tgz + version: 9.2.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.4 + created: "2022-06-11T06:32:42.641425619Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:44cef627cbc2e750d72bcdbebf0a8231f547e60df1cb139e0edc64cec21702f5 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/bitnami-docker-cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.5.tgz + version: 9.2.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.4 + created: "2022-06-10T07:09:43.424538169Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:9bf197e42f12ddcd32b06bdfc5a785517610e543d0c0855a76c9faa913c254ab + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/bitnami-docker-cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.4.tgz + version: 9.2.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.4 + created: "2022-06-08T09:58:50.587731474Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:d0c5a68d458db3aca1f08a3a5271287e1e9a18028a9b1fc9e8e311081c59a4a7 + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/bitnami-docker-cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.3.tgz + version: 9.2.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 4.0.4 + created: "2022-06-03T14:48:53.900898792Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Cassandra is an open source distributed database management + system designed to handle large amounts of data across many servers, providing + high availability with no single point of failure. + digest: sha256:970bc9c9b986977c7e315979fb77d3879d62ca8abf7f71c3edf291fd42061d3a + home: https://github.com/bitnami/charts/tree/master/bitnami/cassandra + icon: https://bitnami.com/assets/stacks/cassandra/img/cassandra-stack-220x234.png + keywords: + - cassandra + - database + - nosql + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cassandra + sources: + - https://github.com/bitnami/bitnami-docker-cassandra + - http://cassandra.apache.org + urls: + - https://charts.bitnami.com/bitnami/cassandra-9.2.2.tgz + version: 9.2.2 + cert-manager: + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.3-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.3-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.3-debian-12-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.3 + created: "2024-08-16T12:56:10.850304553Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 4b58e60757be57bebf71b900ce2c5c289d80f21f9b38ac603893f831e9723bbf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.17.tgz + version: 1.3.17 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.2-debian-12-r1 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.2-debian-12-r1 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.2-debian-12-r1 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.2 + created: "2024-08-06T23:52:05.827838701Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: e49b4718bb2a718a74be6f1fa184c37de3d85e4c8ebcba2c0f4b10c0890da862 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.16.tgz + version: 1.3.16 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.2-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.2-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.2-debian-12-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.2 + created: "2024-07-30T15:58:10.6645693Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 048635a63af63598340b6f69e9884b5d330dd6eb7289980d5baa543426364817 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.15.tgz + version: 1.3.15 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.1-debian-12-r6 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.1-debian-12-r6 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.1-debian-12-r7 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.1-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2024-07-25T03:44:03.434276142Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 13d56909ee96b8e8c75211fc87fd15928005ee9a5317cc95845d4be2fa1e6fac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.14.tgz + version: 1.3.14 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.1-debian-12-r4 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.1-debian-12-r5 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.1-debian-12-r6 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2024-07-24T04:03:32.217242318Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: b6bc0a23faa42cfd862189f6f0903ece35400e9f315d0afa01a61c7df29284d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.13.tgz + version: 1.3.13 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.1-debian-12-r4 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.1-debian-12-r4 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.1-debian-12-r5 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2024-07-23T22:06:31.144373007Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: f2707d2ba6440c2aca143986b964b3c30635e10af54d9edf06fcf014d26a7f9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.12.tgz + version: 1.3.12 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.1-debian-12-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.1-debian-12-r3 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.1-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2024-07-18T11:14:21.100362779Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 19d22955e2543559be9c3f14fb3802c6fa521946ecc38b97b14920b8f4ada719 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.11.tgz + version: 1.3.11 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.1-debian-12-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.1-debian-12-r3 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.1-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2024-07-12T12:37:02.574647Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 8247a63488ca9fe241f1c1bff0abcb3728918dd2b8005b4c3c41ba13229e3a92 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.10.tgz + version: 1.3.10 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.1-debian-12-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.1-debian-12-r3 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.1-debian-12-r3 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2024-07-04T12:56:56.661481141Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 122e6e5c4537a63950f15c49b503970df3120220636ad8b9fd1f265ea5fad667 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.9.tgz + version: 1.3.9 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.1-debian-12-r2 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.1-debian-12-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.1-debian-12-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2024-07-02T23:17:31.178287428Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: d054a366aa9393cee7c37515ee9c3e7f61fb65d735b793987d0553c6c466f118 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.8.tgz + version: 1.3.8 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.1-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.1-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.1-debian-12-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2024-06-27T02:42:34.576399956Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: abe7eb56af7d3d51e29604053875598f031393d675db12f30348186bd7a60556 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.7.tgz + version: 1.3.7 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.0-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.0-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.0-debian-12-r1 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.0 + created: "2024-06-18T11:36:44.732252678Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: a69839e51c864bc58947dafcc3711cc93dc4595bff8e7d4a4323ed45a5509d5a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.6.tgz + version: 1.3.6 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.0-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.0-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.0-debian-12-r1 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.0 + created: "2024-06-17T12:15:14.670259359Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 163a4696c0894dbf989f9ceb9af33a1b4db2f09e8f6778679e0ab12e21d053ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.5.tgz + version: 1.3.5 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.0-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.0-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.0-debian-12-r1 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.0 + created: "2024-06-12T12:48:21.455174382Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: c8033ed65994def0e76567cb3964274b5dd0d922efeb417cbaaceae9101a58c5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.4.tgz + version: 1.3.4 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.15.0-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.15.0-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.15.0-debian-12-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.15.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.0 + created: "2024-06-07T07:12:46.156062776Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 03a3b95bb961f866c4bf8feb7fad77c462e014abf7d14c383585e929ce73ee6a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.3.tgz + version: 1.3.3 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.5-debian-12-r6 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.5-debian-12-r4 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.5-debian-12-r5 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.5-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.5 + created: "2024-06-05T00:19:11.775634429Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 6f1223828606bce183840148751c05fcfebfde71cace00486879c4eb6c2cf43d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.2.tgz + version: 1.3.2 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.5-debian-12-r5 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.5-debian-12-r3 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.5-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.5 + created: "2024-05-27T06:52:13.613377859Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 7979ffd0732870d0fcbc9f39adbf2c294329d22fa1069ab690a1b72c4e4cd4a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.3.0.tgz + version: 1.3.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.5-debian-12-r5 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.5-debian-12-r3 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.5-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.5 + created: "2024-05-23T13:59:14.080590416Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 02c8931e5be081de31a23b1a61fe409bdb5672813362cd5df46471643a1116c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.2.1.tgz + version: 1.2.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.5-debian-12-r5 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.5-debian-12-r3 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.5-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.5 + created: "2024-05-21T14:24:02.451451667Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 5225bd58d151c57754119d8f1e518863607cd0cab82dbec6ca2484111e66acd1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.2.0.tgz + version: 1.2.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.5-debian-12-r5 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.5-debian-12-r3 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.5-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.5 + created: "2024-05-18T00:06:19.062181562Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 9f29f4e126dac0207580984c06728952ebb76b2217fdf0a42841ee909e08a065 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.1.7.tgz + version: 1.1.7 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.5-debian-12-r5 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.5-debian-12-r3 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.5-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.5 + created: "2024-05-13T20:06:44.948125386Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 38f3a91ad0fec4965f4063401f6508e88e5e188bd1aeee3fd25f8c8dac9054dc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.1.6.tgz + version: 1.1.6 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.5-debian-12-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.5-debian-12-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.5-debian-12-r3 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.5 + created: "2024-05-07T23:44:01.759118853Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 5304b054da003e9216b1e4b84bc6462d41f4c697a6dab01fa9f6c9783ff33dcd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.1.5.tgz + version: 1.1.5 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.5-debian-12-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.5-debian-12-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.5-debian-12-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.5 + created: "2024-05-07T23:06:39.259328278Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 0791dcb138ba0e19e2d45cf964985860064169dc7ecde6727addb6fe4a2544be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.1.4.tgz + version: 1.1.4 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.5-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.5-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.5-debian-12-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.5 + created: "2024-04-25T17:01:28.237462372Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 98bd0f9838716ea57b7d32c4a98b50c6d0f2762233381b3dc7ce84b819be3f26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.1.3.tgz + version: 1.1.3 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.4-debian-12-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.4-debian-12-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.4-debian-12-r5 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.4-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.4 + created: "2024-04-22T12:38:04.718520812Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 9149d3d871382efe550a08c0422dfdfd48c2906674c60eb58d3e57813722b48f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.1.2.tgz + version: 1.1.2 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.4-debian-12-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.4-debian-12-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.4-debian-12-r5 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.4-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.4 + created: "2024-04-12T16:18:47.207043839Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 70cee7bf67e0eeb3bc234cfab811aa788b42eb70ad6bb2bf8eaefa2f96789c51 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.1.1.tgz + version: 1.1.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.4-debian-12-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.4-debian-12-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.4-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.4-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.4 + created: "2024-04-09T08:06:54.839690686Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 31c5875103a2edbd7f1e5b531c57a393a8460f0c5d3a77070ef4ff69bb50dc26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.1.0.tgz + version: 1.1.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.4-debian-12-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.4-debian-12-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.4-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.4-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.4 + created: "2024-04-05T23:26:36.444175253Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 48859a6cc6e1fb9bb427e9c5f74802f319626ee25021733d1757ca0861cdaf56 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.0.2.tgz + version: 1.0.2 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.4-debian-12-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.4-debian-12-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.4-debian-12-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.4-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.4 + created: "2024-04-04T13:00:19.647298976Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 22c6f7b37a3905a54bf40f05361b6c8d5cec3e1813b94689c5849a90a580e450 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.0.1.tgz + version: 1.0.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.4-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.4-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.4-debian-12-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.4 + created: "2024-03-18T09:26:22.062595777Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 9fddfc8b71b5d4f9f8820bfb8315150cf8d816064af30ab7f8d731c255fd1335 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-1.0.0.tgz + version: 1.0.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.4-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.4-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.4-debian-12-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.4 + created: "2024-03-08T19:29:01.683559874Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: a77537582425598c0f59e886bb81fdfea8dabb264491cbae4088898980a7103b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.24.1.tgz + version: 0.24.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.3-debian-12-r1 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.3-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.3-debian-12-r1 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.3-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.3 + created: "2024-03-08T09:29:52.202165532Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 6f4be908c39d7249980c33a63925b1c4a6316d0643bb5e05ddba93045b5e9c32 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.24.0.tgz + version: 0.24.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.3-debian-12-r1 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.3-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.3-debian-12-r1 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.3-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.3 + created: "2024-03-06T14:21:16.182677284Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: dd4ee2f410c8301c70933baf6c5414c0f07fa4b3f82a7550e51271878bd15108 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.23.1.tgz + version: 0.23.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.3-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.3-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.3-debian-12-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.3 + created: "2024-03-06T10:44:28.771348213Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: bae16d31476c2e6e0032aa0866cffd141083767456467d52e1b572411787495f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.23.0.tgz + version: 0.23.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.3-debian-12-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.3-debian-12-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.3-debian-12-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.3 + created: "2024-02-27T11:48:59.355831155Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: adff42dcdfdd93a72f778e75c33512cdc05908c4f585d3684d62581541c8a20a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.22.1.tgz + version: 0.22.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.2-debian-12-r5 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.2-debian-12-r5 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.2-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.2 + created: "2024-02-23T16:31:01.096924327Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 977f425ed5e83aed277994c6121ef05b41abc3e2957e698a034b844000d909b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.22.0.tgz + version: 0.22.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.2-debian-12-r5 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.2-debian-12-r5 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.2-debian-12-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.2 + created: "2024-02-21T17:56:50.445519921Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 37a5c2a26edcf474b43e5d35127d3cdff34618bc374563cc6f7c4a8f67ca3412 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.21.2.tgz + version: 0.21.2 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.2-debian-12-r4 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.2-debian-12-r4 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.2-debian-12-r3 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.2-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.2 + created: "2024-02-21T16:31:59.994656549Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: d22ab009072cba72bd97a7d4af8a335e904a100b3aea72a5e053c563f8bbb087 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.21.1.tgz + version: 0.21.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.2-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.2-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.2-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.2 + created: "2024-02-16T09:53:45.432073473Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 773fe09b4d757913eeabe0e6476b9d41dbf19dfd47ff5209cef8de49999d6a1e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.20.0.tgz + version: 0.20.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.2-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.2-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.2-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.2 + created: "2024-02-13T09:42:02.83294438Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 5676741e861a01748b7ab27bce3542973e193ed77e5330d4beff3e6067536875 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.19.0.tgz + version: 0.19.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.2-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.2-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.2-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.2 + created: "2024-02-08T20:16:20.240474729Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 8d081352ae79a61d5447cd2296906eb9acc43dc84adfb900eb66805709b159cc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.18.9.tgz + version: 0.18.9 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.1-debian-11-r1 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.1-debian-11-r1 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.1-debian-11-r1 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.1-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.1 + created: "2024-02-07T14:48:26.273926907Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 829c763a5ece5d421d36f1ca01b576ebbb29961830643fafc1b97162771c7716 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.18.8.tgz + version: 0.18.8 + - annotations: + category: CertificateAuthority + images: | + - c + - a + - i + - n + - j + - e + - c + - t + - o + - r + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.1 + created: "2024-02-07T11:14:44.326529781Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: d32ef0cc45316db3535334cd68bca81874aac66742047ccab046111fce248e26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.18.7.tgz + version: 0.18.7 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.1-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.1-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.1-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.1 + created: "2024-02-03T08:27:15.967541798Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 874465b1d8200b39260f0980b5622e4e08f76126b9cad7302890e4cab3699846 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.18.6.tgz + version: 0.18.6 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.0-debian-11-r1 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.0-debian-11-r1 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.0-debian-11-r1 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.0 + created: "2024-02-02T18:26:04.534732379Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 690fb2b1a8e574df8c2ba74b2235a0d5ffe09f86b57aae0f8399e665afc28383 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.18.5.tgz + version: 0.18.5 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.14.0-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.14.0-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.14.0-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.14.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.0 + created: "2024-02-02T10:44:20.316521458Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 2a9fc53aa76d01272621b4f5e54d2f09e46659c8985d30561782c508caec65d5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.18.4.tgz + version: 0.18.4 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r6 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r6 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r6 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2024-01-30T05:14:56.524602121Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 309e4300e16330c8283a0d023e7f5787004486f58911b0b908c6a05dee91f8dc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.18.3.tgz + version: 0.18.3 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r5 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r4 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r4 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2024-01-26T22:55:20.519304015Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 6c4c74b3213524e3c4dde201ef036de6f9f03eb1648860b12d47dceda4a39ff0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.18.2.tgz + version: 0.18.2 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2024-01-19T10:48:01.681537135Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 199d46a72c651d7d0f99186ddcfd56667043c5e84e65ecd962687bf231d5c55e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.18.0.tgz + version: 0.18.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2024-01-19T09:29:50.572493421Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: c2697d741e5128cd0c92cb35762eb27f08da200faf90f1fc2f3485c6bd44ef7b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.17.0.tgz + version: 0.17.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2024-01-18T15:40:34.112097498Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: efea24a260a07d34819dd210fdd071344c0e53d78cf7e221fcd892335c1336e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.16.3.tgz + version: 0.16.3 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r3 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2024-01-18T10:32:26.395602236Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: f747d53b302ef6433c8e059bdbe1cb4dc62096b52be5908c0b116ab56b98b40b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.16.2.tgz + version: 0.16.2 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r2 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2024-01-17T11:00:50.930303785Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: a6eb2e83b16a4ec1580da1e9363350f9c6514113dee65d81e7ff96f88022a40b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.16.1.tgz + version: 0.16.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r2 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2024-01-17T09:57:29.427555916Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 25dad0d98636810952b442036f34cf46e4ae89c9dd19da258de613daa38d672e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.16.0.tgz + version: 0.16.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r2 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2024-01-16T14:55:40.145462243Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: c5b9465bd7c819058d51258cfbc031a568901a7d2fff172013cb3d3a1cb4dc14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.15.0.tgz + version: 0.15.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r2 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2024-01-10T04:21:15.942552171Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 4b2f1492ac3bf57820ee00a37e7186aab9bef5ae826aad51c24d63db2e93617c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.14.1.tgz + version: 0.14.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.3-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.3-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.3-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.3 + created: "2023-12-09T13:34:16.941763558Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: fc8754c268741f3d929f87df04dc242f8a9049d1bb32a527cff435eed22086c2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.13.5.tgz + version: 0.13.5 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.2-debian-11-r2 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.2-debian-11-r2 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.2-debian-11-r2 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.2-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.2 + created: "2023-12-06T15:41:53.226137389Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: cee9d890798906e448d2d854ec4479e0a26f7cd2b658c36d566297f0c348e673 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.13.4.tgz + version: 0.13.4 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.2-debian-11-r1 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.2-debian-11-r1 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.2-debian-11-r1 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.2-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.2 + created: "2023-11-10T15:38:44.267311042Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: e1b3c7632bf2cd7bfa6909de776ccb491552a115feace444e15220d9097d92de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.13.3.tgz + version: 0.13.3 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.2-debian-11-r1 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.2-debian-11-r1 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.2-debian-11-r1 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.2-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.2 + created: "2023-11-08T16:59:53.977919175Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 8a7abe3bd4eacc95220183abf123ddfb6b1dcd48cf2e3f4f47f93162d49cd169 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.13.2.tgz + version: 0.13.2 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.2-debian-11-r1 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.2-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.2-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.2 + created: "2023-11-08T16:30:57.962411959Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: fe951a2fbc80e7a851b78cbede890f0561e3cad5d8475c179340b830ab83352b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.13.1.tgz + version: 0.13.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.2-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.2-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.2-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.2 + created: "2023-10-31T15:35:31.765029274Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 71b5a71177edbe123974589f98025586d09ac37b053d64c029073740d91b3cb9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.13.0.tgz + version: 0.13.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.2-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.2-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.2-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.2 + created: "2023-10-31T00:06:01.391226252Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 4cfdada752f084d5621a7c4bc1f5b43840cd2660afbaf6a14642005bb0de7f2b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.12.tgz + version: 0.12.12 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.1-debian-11-r8 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.1-debian-11-r9 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.1-debian-11-r10 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.1-debian-11-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.1 + created: "2023-10-11T02:04:23.786537068Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: bda783067e0d08b743461d6e2d38c4328d81dfb6d61cc0e1acc8402ef17e110e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.11.tgz + version: 0.12.11 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.1-debian-11-r8 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.1-debian-11-r9 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.1-debian-11-r8 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.1-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.1 + created: "2023-10-09T19:10:13.147493179Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: d5ccc02e965ff88bf4b7cfdb464078e7c7b5e9c261b8590d747acc003e50d29e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.10.tgz + version: 0.12.10 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.1-debian-11-r7 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.1-debian-11-r8 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.1-debian-11-r5 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.1-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.1 + created: "2023-10-09T12:25:54.064454393Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 6cc03221a5eb97e4561b4a9360e50806bbf6d288e5cebb720704b34a9344a4ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.9.tgz + version: 0.12.9 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.1-debian-11-r7 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.1-debian-11-r8 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.1-debian-11-r5 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.1-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.1 + created: "2023-10-05T00:47:37.325643426Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 95e18469c1b33b53289c44b8571c7e70acd9a9f70cda8264eaeea290419ef07f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.8.tgz + version: 0.12.8 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.1-debian-11-r5 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.1-debian-11-r7 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.1-debian-11-r5 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.1-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.1 + created: "2023-10-04T21:08:51.843153621Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: e0b3d8670d80d6716cb2dd1443ba959b3a33243d06c98baa3bd820039ffcf85c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.7.tgz + version: 0.12.7 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.1-debian-11-r5 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.1-debian-11-r5 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.1-debian-11-r5 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.1-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.1 + created: "2023-10-03T19:02:47.359717909Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 8219d6edc2d9a590ef68546c2d9ac1de1d7fba997691a1ceea3518a7a122814e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.6.tgz + version: 0.12.6 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.1-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.1-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.1-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.1 + created: "2023-09-27T18:54:20.333590899Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: d15091ae19842e726ce11ac1c9db150c6bdcce0ea528609ddff2dcbf822b01c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.5.tgz + version: 0.12.5 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.0-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.0-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.0-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.0 + created: "2023-09-18T14:59:36.303730208Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 1ea78464026b5d9f524221991b9526f2ffee73d0b8e2aeeead8fa43b819057e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.4.tgz + version: 0.12.4 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.13.0-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.13.0-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.13.0-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.13.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.13.0 + created: "2023-09-12T22:14:22.062352904Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: e971751f9e81b59fa0998bbfac2bd1118af3d56ea1e13f98a896cc6174825e8d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.3.tgz + version: 0.12.3 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.12.4-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.12.4-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.12.4-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.12.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.4 + created: "2023-09-08T13:33:43.076112833Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 27a58028b52c1dd65b525f2e126d1f00378206014386b9e81b0500f7b9c794d0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.2.tgz + version: 0.12.2 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.12.4-debian-11-r0 + - name: cainjector + image: docker.io/bitnami/cainjector:1.12.4-debian-11-r0 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.12.4-debian-11-r0 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.12.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.4 + created: "2023-09-02T03:46:49.001175889Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: e026406b0eba4164eba4cfbfa1007a9d492575f200924fa63dcdd300e3f92781 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.1.tgz + version: 0.12.1 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.12.3-debian-11-r23 + - name: cainjector + image: docker.io/bitnami/cainjector:1.12.3-debian-11-r23 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.12.3-debian-11-r23 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.12.3-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.3 + created: "2023-08-22T15:46:28.936551045Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: b991abdfe4994a2433979977629a1a4fadaf5ec83c8071414ef9ec4d91845fbf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.12.0.tgz + version: 0.12.0 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.12.3-debian-11-r23 + - name: cainjector + image: docker.io/bitnami/cainjector:1.12.3-debian-11-r23 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.12.3-debian-11-r23 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.12.3-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.3 + created: "2023-08-22T08:24:39.346773519Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: d45b5de37bab9269407985f02fe6766ea2e6c5e936146a462f900ef812d9b5e9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.15.tgz + version: 0.11.15 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.12.3-debian-11-r23 + - name: cainjector + image: docker.io/bitnami/cainjector:1.12.3-debian-11-r23 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.12.3-debian-11-r23 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.12.3-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.3 + created: "2023-08-19T11:37:17.577387743Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 0b53aeb13779a647f26b6eaca91aea8935b89d30c266fe47b98d0a133a8bfe3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.14.tgz + version: 0.11.14 + - annotations: + category: CertificateAuthority + images: | + - name: acmesolver + image: docker.io/bitnami/acmesolver:1.12.3-debian-11-r20 + - name: cainjector + image: docker.io/bitnami/cainjector:1.12.3-debian-11-r20 + - name: cert-manager-webhook + image: docker.io/bitnami/cert-manager-webhook:1.12.3-debian-11-r20 + - name: cert-manager + image: docker.io/bitnami/cert-manager:1.12.3-debian-11-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.3 + created: "2023-08-17T13:10:22.70125603Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 0e389071341f042bc757d72fe2aacf7caf9fdf83ca5155955122614d95c1ba5f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.13.tgz + version: 0.11.13 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.3 + created: "2023-08-16T10:46:55.23987263Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: c120ca97978a76bc4b69904693106ebdad8818637dd78c429d5b35a9394eaf3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.12.tgz + version: 0.11.12 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.3 + created: "2023-08-08T14:57:20.359069706Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 01552ad5bca6550b9b4ffba24b7a9d64512c5cf68b0a6182c4a2395dcafaa871 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.11.tgz + version: 0.11.11 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.3 + created: "2023-08-08T10:32:17.287484929Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 9baa0db7aa4e58215a03122c9dc9fd532d4306b7cd11e2c88306a4c5d9038a8d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.10.tgz + version: 0.11.10 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.3 + created: "2023-07-27T14:01:10.182182506Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 79ecfc9d3cceb58ec0f018d8407e3a135158158bd462ea91915918be7467674d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.9.tgz + version: 0.11.9 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.2 + created: "2023-07-26T11:09:58.672413672Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: cb17f4b7c8e2e22a9025b6610e3f1f738549e5b790ea3a493b531385df372824 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.8.tgz + version: 0.11.8 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.2 + created: "2023-07-25T07:53:11.375560643Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: a38d59bae6b2f6c51e12d26347079823dcfe749222257f1c7d38e57ee3a06a49 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.7.tgz + version: 0.11.7 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.2 + created: "2023-07-13T13:30:18.484102829Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 0687f948a42987c880a6edaaf3edc69bf69701c37a7c1ed8a78a0a4dfbc15bf5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.6.tgz + version: 0.11.6 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.2 + created: "2023-06-26T06:59:02.250747517Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: dbe31f8d6bc4b7811cf6414083eefcf74d36b570ac18dbd7b29fe9d3366fa527 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.5.tgz + version: 0.11.5 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.2 + created: "2023-06-16T22:08:42.629297141Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 7023fdda1cd5a566cdd02fe7bfdfbeb8f18a7eb0ae4841d4c3324157ef9d077f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.4.tgz + version: 0.11.4 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.12.1 + created: "2023-06-05T17:42:16.468302161Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 114b7ed63930782a41c64e17e8e64e534425933218a3e4dfc3fc9c55da591b3c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.3.tgz + version: 0.11.3 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.2 + created: "2023-05-16T02:04:27.698192384Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 9a8d2f3402b6c52ee186688e2f6132621bccc463dd7ff4e984aff4b0b6f3e0a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.2.tgz + version: 0.11.2 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.2 + created: "2023-05-10T09:04:02.629181262Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 922f30a0d0cc5f44923d8b2d2d8dc9e28f693b58b5a8933d86a074a7d98b8b1a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.11.1.tgz + version: 0.11.1 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.1 + created: "2023-05-09T15:33:32.159030808Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 5dc8e1a39cfa87a9b4d89dfeb8633482a15819c16d007d40aaddbd91c2c59279 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.10.2.tgz + version: 0.10.2 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.1 + created: "2023-05-08T04:38:31.35499206Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: bdf5d3c416a6de7608ad5c725f3479c6d18485627d6564e39fc39068d1db41ba + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.10.1.tgz + version: 0.10.1 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.1 + created: "2023-04-08T04:20:00.936660765Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: ae71b27d7597909816712b8cb4d627923d7261a2d48f8ed42d9dfb77d48441ce + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.9.6.tgz + version: 0.9.6 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.0 + created: "2023-04-01T12:00:22.042355802Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 1082996ad0313514d675247dfa8318dedb839b2f4a151496315566c97b2c980c + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.9.5.tgz + version: 0.9.5 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.0 + created: "2023-03-30T09:37:10.836234735Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: b09dac40f5cb749ba2ba418a74a5379aab760f296a38fe54be4469411e255810 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.9.4.tgz + version: 0.9.4 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.0 + created: "2023-03-18T22:18:43.175278811Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 2b8de5d7edfbe3e73dbf5e7da30ede0861538136f4e7443ff7033dc6cae66345 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.9.3.tgz + version: 0.9.3 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.0 + created: "2023-03-01T10:01:09.531559792Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: f71366dc13562ec9bdb9ef3bf317b8f19307f5a849fd9d760d21daaaab77ac3f + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.9.2.tgz + version: 0.9.2 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.0 + created: "2023-02-17T15:03:39.870546628Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 4d6848f21e4d520d366db71609b2d6014c5863089a96bf2bdee3ae48179d1d23 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.9.1.tgz + version: 0.9.1 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.0 + created: "2023-02-14T15:06:42.497945144Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 2ee1fd06e4d7c2ad9c8f0084b56f7f74328c1757731701db32f6107d8863464d + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.9.0.tgz + version: 0.9.0 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.11.0 + created: "2023-02-10T16:51:45.627260125Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 100ee0359ede32740de54867f7c108187c5954a493489918a68dbf22e77ecb9d + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.13.tgz + version: 0.8.13 + - annotations: + category: CertificateAuthority + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 1.11.0 + created: "2023-01-11T16:55:52.381069185Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: a9ebc65d3d28d2788373b120dba3170b967a9551031cccf90843ac0fe7e33c01 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.12.tgz + version: 0.8.12 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.10.2 + created: "2023-01-11T01:57:58.567017078Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 9f2682ef9e03511d912502759fc5c27a6480c30da942b423fe79c026a97e6f08 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.11.tgz + version: 0.8.11 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.10.1 + created: "2022-12-19T05:00:04.349363378Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: bfe0cf0022d8bb7b6beb6556ee5bed81ccb69b8d35f25648a344597d09fd2fbb + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.10.tgz + version: 0.8.10 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.10.1 + created: "2022-11-19T04:56:19.046346162Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 5d3111715f4a40842c754ed8956b10f7b7ae7f4bf0333b1897d534d61a510697 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.9.tgz + version: 0.8.9 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.10.0 + created: "2022-11-17T02:04:59.841870914Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 5d9bf73ab576d15edfbc4ed4367194404baee41d66424a48b197aad56e6f97a5 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.8.tgz + version: 0.8.8 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.10.0 + created: "2022-11-11T15:32:04.619095052Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: cert-manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: 6874755c7bf03ff74d8e21c611d8a25147388cb4da8f58715f6ac2d351dde456 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.7.tgz + version: 0.8.7 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.10.0 + created: "2022-10-18T02:31:33.398404592Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:95164017fe883c61203966fd051e4aaaab28a13e87ae9ebaa58ac925f5eea1cf + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.6.tgz + version: 0.8.6 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-10-08T07:31:52.24714199Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:573f013333aeeb691ebf141823d0bb67b6ccdaabd75e31d44ab0f86cad3c6859 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.5.tgz + version: 0.8.5 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-09-27T09:03:37.382101841Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:d4db29afa50b567e0fdfa43ea036d6cca496d002844faf69a230977efd643cc5 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.4.tgz + version: 0.8.4 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-09-22T09:27:18.654679828Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:4eecca6fb55d2f4272f9d3dcb50bd466ac672fdec83b78f14d6106f078cdcc6d + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.3.tgz + version: 0.8.3 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-09-08T07:25:09.904781718Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:45d1f48b78d70170ed8b5fc3dd6e4a28d8fdd2c8b2ad51d612d24de402df950b + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.2.tgz + version: 0.8.2 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-08-23T22:42:10.099766372Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:0ef2cae82974de0fab4370d49deb6a6b52dfa7ee8d94b66cff78724649c73198 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.1.tgz + version: 0.8.1 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-08-22T13:54:26.391102399Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:5847e8d6332275e359d60f8228d7788c3c64b26e4c2a69302060f29ea94eaed9 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.8.0.tgz + version: 0.8.0 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-08-09T08:24:37.202730187Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:5bcf5f631b237a81e8f28d0a61d53796e2177178a2dd1264b790ef120a1c5e60 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.7.8.tgz + version: 0.7.8 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-08-04T23:10:44.694141417Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:71f4a893fff0e9a4ad12dcff15f553f787d0c5adb82477e9bfcf064067ab10fd + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.7.7.tgz + version: 0.7.7 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-08-03T12:57:39.326387683Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:e6d653bb2206e274bed558d8221463f80807f6fb0a7555c4e0fedfc2edd76f63 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.7.6.tgz + version: 0.7.6 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-08-02T09:22:37.385058158Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:f71e4d0d6656e4e7618f76a4ad7423a375443f814241fb1b1ad8b038b8bcc546 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.7.5.tgz + version: 0.7.5 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-07-28T11:53:38.209123771Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:d7aebd0f48e85e7f944dfe571f921ff1fd6c8e350f598beeaaca78c6581d9e52 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.7.4.tgz + version: 0.7.4 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.1 + created: "2022-07-26T22:08:45.982807731Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:a5e3d8730e8081483c0763a68d6ade9d8c269a4ae60b6de84396ff1fca4a119d + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager + - https://github.com/bitnami/containers/tree/main/bitnami/cert-manager-webhook + - https://github.com/bitnami/containers/tree/main/bitnami/cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.7.3.tgz + version: 0.7.3 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.9.0 + created: "2022-07-23T00:58:08.616634716Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:40bd7d1ca5d49d1beacbd28d91c033c9eee07219e91d3c3ab0092949711b0e40 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/bitnami-docker-cert-manager + - https://github.com/bitnami/bitnami-docker-cert-manager-webhook + - https://github.com/bitnami/bitnami-docker-cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.7.2.tgz + version: 0.7.2 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.8.2 + created: "2022-07-01T03:08:20.94552184Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:41f5c61fecab7c18809be5616f68cac5ce27ae55c0f3bedddaffed15ae368e62 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/bitnami-docker-cert-manager + - https://github.com/bitnami/bitnami-docker-cert-manager-webhook + - https://github.com/bitnami/bitnami-docker-cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.7.1.tgz + version: 0.7.1 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.8.2 + created: "2022-06-30T15:11:52.2263612Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:d10b8766cd28bb2ef5be50ed9233e337e18c92982076c2648cc1d78549fb834b + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/bitnami-docker-cert-manager + - https://github.com/bitnami/bitnami-docker-cert-manager-webhook + - https://github.com/bitnami/bitnami-docker-cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.7.0.tgz + version: 0.7.0 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.8.2 + created: "2022-06-24T05:47:21.603672871Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:48061664990151437cc05f6d7c06b2a2908a133e5de654ec6719ed74d6eccc3f + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/bitnami-docker-cert-manager + - https://github.com/bitnami/bitnami-docker-cert-manager-webhook + - https://github.com/bitnami/bitnami-docker-cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.6.2.tgz + version: 0.6.2 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.8.1 + created: "2022-06-14T23:10:03.250837909Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:fbb4494b4a32a5507cebe80477dafa54d12c33ba9789da7a5515cad4a0d7760e + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/bitnami-docker-cert-manager + - https://github.com/bitnami/bitnami-docker-cert-manager-webhook + - https://github.com/bitnami/bitnami-docker-cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.6.1.tgz + version: 0.6.1 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.8.0 + created: "2022-06-13T14:13:18.249932348Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:443eb4e1170550e9997453f4d9d0197ee41719be5b5fa8d7d1fcce338c863992 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/bitnami-docker-cert-manager + - https://github.com/bitnami/bitnami-docker-cert-manager-webhook + - https://github.com/bitnami/bitnami-docker-cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.6.0.tgz + version: 0.6.0 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.8.0 + created: "2022-06-10T15:36:55.720270549Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:e85a01e6e542f7aeba249173ce397355dde0b600fba650fdf8c5cbb3da25aa0e + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/bitnami-docker-cert-manager + - https://github.com/bitnami/bitnami-docker-cert-manager-webhook + - https://github.com/bitnami/bitnami-docker-cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.5.8.tgz + version: 0.5.8 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.8.0 + created: "2022-06-08T10:05:13.66370375Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:b02c6eaef5e7a614ecb1d2faa768f5cb867eb799d48b5f57f1811bd4214850a3 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/bitnami-docker-cert-manager + - https://github.com/bitnami/bitnami-docker-cert-manager-webhook + - https://github.com/bitnami/bitnami-docker-cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.5.7.tgz + version: 0.5.7 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 1.8.0 + created: "2022-06-01T14:28:17.39954768Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Cert Manager is a Kubernetes add-on to automate the management and + issuance of TLS certificates from various issuing sources. + digest: sha256:b64efb9b05e2c8eb9218e7a5e08f25e34f5619286b9171f3a3dcde9176fa9796 + home: https://github.com/jetstack/cert-manager + icon: https://bitnami.com/assets/stacks/cert-manager/img/cert-manager-stack-220x234.png + keywords: + - go + - security + - tls + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: cert-manager + sources: + - https://github.com/bitnami/bitnami-docker-cert-manager + - https://github.com/bitnami/bitnami-docker-cert-manager-webhook + - https://github.com/bitnami/bitnami-docker-cainjector + - https://github.com/jetstack/cert-manager + urls: + - https://charts.bitnami.com/bitnami/cert-manager-0.5.6.tgz + version: 0.5.6 + chainloop: + - annotations: + category: DeveloperTools + images: | + - name: chainloop-artifact-cas + image: docker.io/bitnami/chainloop-artifact-cas:0.95.7-debian-12-r0 + - name: chainloop-control-plane + image: docker.io/bitnami/chainloop-control-plane:0.95.7-debian-12-r0 + - name: chainloop-control-plane-migrations + image: docker.io/bitnami/chainloop-control-plane-migrations:0.95.7-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.41.1-debian-12-r0 + license: Apache-2.0 + apiVersion: v2 + appVersion: 0.95.7 + created: "2024-08-19T09:06:07.093474137Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: development + name: vault + repository: oci://registry-1.docker.io/bitnamicharts + version: 1.4.x + description: Chainloop is an open-source Software Supply Chain control plane, + a single source of truth for metadata and artifacts, plus a declarative attestation + process. + digest: 7f0d5e293a76e098dc31fcdd9ef150a1f1f279f813784295e29c8dd2e2b72510 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/chainloop/img/chainloop-stack-220x234.png + keywords: + - chainloop + - evidence-store + - supply-chain-security + - devops + - devsecops + - security + - compliance + - cyclonedx + - spdx + - sbom + - attestation + - oss-compliance + - in-toto + - slsa + - sbom-distribution + - open-source-licensing + - slsa-provenance + - metadata-platform + - sbom-discovery + - regulated-industry + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: chainloop + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/chainloop + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane-migrations + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-artifact-cas + - https://github.com/chainloop-dev/chainloop + urls: + - https://charts.bitnami.com/bitnami/chainloop-1.0.0.tgz + version: 1.0.0 + - annotations: + category: DeveloperTools + images: | + - name: chainloop-artifact-cas + image: docker.io/bitnami/chainloop-artifact-cas:0.95.7-debian-12-r0 + - name: chainloop-control-plane + image: docker.io/bitnami/chainloop-control-plane:0.95.7-debian-12-r0 + - name: chainloop-control-plane-migrations + image: docker.io/bitnami/chainloop-control-plane-migrations:0.95.7-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.41.1-debian-12-r0 + license: Apache-2.0 + apiVersion: v2 + appVersion: 0.95.7 + created: "2024-08-14T11:44:33.472797931Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: development + name: vault + repository: oci://registry-1.docker.io/bitnamicharts + version: 1.4.x + description: Chainloop is an open-source Software Supply Chain control plane, + a single source of truth for metadata and artifacts, plus a declarative attestation + process. + digest: 328bf74ec0e78e8f3f5b531642b5ec592340a6d5b097b5c08915620b8945eb29 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/chainloop/img/chainloop-stack-220x234.png + keywords: + - chainloop + - evidence-store + - supply-chain-security + - devops + - devsecops + - security + - compliance + - cyclonedx + - spdx + - sbom + - attestation + - oss-compliance + - in-toto + - slsa + - sbom-distribution + - open-source-licensing + - slsa-provenance + - metadata-platform + - sbom-discovery + - regulated-industry + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: chainloop + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/chainloop + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane-migrations + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-artifact-cas + - https://github.com/chainloop-dev/chainloop + urls: + - https://charts.bitnami.com/bitnami/chainloop-0.1.6.tgz + version: 0.1.6 + - annotations: + category: DeveloperTools + images: | + - name: chainloop-artifact-cas + image: docker.io/bitnami/chainloop-artifact-cas:0.95.5-debian-12-r0 + - name: chainloop-control-plane + image: docker.io/bitnami/chainloop-control-plane:0.95.6-debian-12-r0 + - name: chainloop-control-plane-migrations + image: docker.io/bitnami/chainloop-control-plane-migrations:0.95.6-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.41.1-debian-12-r0 + license: Apache-2.0 + apiVersion: v2 + appVersion: 0.95.6 + created: "2024-08-13T16:05:51.897125856Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: development + name: vault + repository: oci://registry-1.docker.io/bitnamicharts + version: 1.4.x + description: Chainloop is an open-source Software Supply Chain control plane, + a single source of truth for metadata and artifacts, plus a declarative attestation + process. + digest: a93c7484a318344061b019611ee8c437cbd4f6d6625b30095d54c4db052aab8f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/chainloop/img/chainloop-stack-220x234.png + keywords: + - chainloop + - evidence-store + - supply-chain-security + - devops + - devsecops + - security + - compliance + - cyclonedx + - spdx + - sbom + - attestation + - oss-compliance + - in-toto + - slsa + - sbom-distribution + - open-source-licensing + - slsa-provenance + - metadata-platform + - sbom-discovery + - regulated-industry + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: chainloop + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/chainloop + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane-migrations + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-artifact-cas + - https://github.com/chainloop-dev/chainloop + urls: + - https://charts.bitnami.com/bitnami/chainloop-0.1.5.tgz + version: 0.1.5 + - annotations: + category: DeveloperTools + images: | + - name: chainloop-artifact-cas + image: docker.io/bitnami/chainloop-artifact-cas:0.95.5-debian-12-r0 + - name: chainloop-control-plane + image: docker.io/bitnami/chainloop-control-plane:0.95.5-debian-12-r0 + - name: chainloop-control-plane-migrations + image: docker.io/bitnami/chainloop-control-plane-migrations:0.95.5-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.41.1-debian-12-r0 + license: Apache-2.0 + apiVersion: v2 + appVersion: 0.95.5 + created: "2024-08-12T21:20:40.794776083Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: development + name: vault + repository: oci://registry-1.docker.io/bitnamicharts + version: 1.4.x + description: Chainloop is an open-source Software Supply Chain control plane, + a single source of truth for metadata and artifacts, plus a declarative attestation + process. + digest: 283b2c53f6ec0f29d5a3986adca1a8f36a7b571edb30b5f4b0c59fb7acb110f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/chainloop/img/chainloop-stack-220x234.png + keywords: + - chainloop + - evidence-store + - supply-chain-security + - devops + - devsecops + - security + - compliance + - cyclonedx + - spdx + - sbom + - attestation + - oss-compliance + - in-toto + - slsa + - sbom-distribution + - open-source-licensing + - slsa-provenance + - metadata-platform + - sbom-discovery + - regulated-industry + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: chainloop + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/chainloop + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane-migrations + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-artifact-cas + - https://github.com/chainloop-dev/chainloop + urls: + - https://charts.bitnami.com/bitnami/chainloop-0.1.4.tgz + version: 0.1.4 + - annotations: + category: DeveloperTools + images: | + - name: chainloop-artifact-cas + image: docker.io/bitnami/chainloop-artifact-cas:0.95.4-debian-12-r0 + - name: chainloop-control-plane + image: docker.io/bitnami/chainloop-control-plane:0.95.4-debian-12-r1 + - name: chainloop-control-plane-migrations + image: docker.io/bitnami/chainloop-control-plane-migrations:0.95.4-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.41.1-debian-12-r0 + license: Apache-2.0 + apiVersion: v2 + appVersion: 0.95.4 + created: "2024-08-12T18:25:40.812498745Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: development + name: vault + repository: oci://registry-1.docker.io/bitnamicharts + version: 1.4.x + description: Chainloop is an open-source Software Supply Chain control plane, + a single source of truth for metadata and artifacts, plus a declarative attestation + process. + digest: e76e8b027225020677bb9c8917763fedc9770a4cc9bddac7d85754f2e5b03813 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/chainloop/img/chainloop-stack-220x234.png + keywords: + - chainloop + - evidence-store + - supply-chain-security + - devops + - devsecops + - security + - compliance + - cyclonedx + - spdx + - sbom + - attestation + - oss-compliance + - in-toto + - slsa + - sbom-distribution + - open-source-licensing + - slsa-provenance + - metadata-platform + - sbom-discovery + - regulated-industry + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: chainloop + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/chainloop + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane-migrations + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-artifact-cas + - https://github.com/chainloop-dev/chainloop + urls: + - https://charts.bitnami.com/bitnami/chainloop-0.1.3.tgz + version: 0.1.3 + - annotations: + category: DeveloperTools + images: | + - name: chainloop-artifact-cas + image: docker.io/bitnami/chainloop-artifact-cas:0.95.4-debian-12-r0 + - name: chainloop-control-plane + image: docker.io/bitnami/chainloop-control-plane:0.95.4-debian-12-r1 + - name: chainloop-control-plane-migrations + image: docker.io/bitnami/chainloop-control-plane-migrations:0.95.4-debian-12-r0 + - name: dex + image: docker.io/bitnami/dex:2.41.1-debian-12-r0 + license: Apache-2.0 + apiVersion: v2 + appVersion: 0.95.4 + created: "2024-08-09T13:57:38.640295803Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: development + name: vault + repository: oci://registry-1.docker.io/bitnamicharts + version: 1.4.x + description: Chainloop is an open-source Software Supply Chain control plane, + a single source of truth for metadata and artifacts, plus a declarative attestation + process. + digest: e6c6fbc091a21e3d00be59021603ea0853269317a7ca8ec9f83bf80f4e05ecfe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/chainloop/img/chainloop-stack-220x234.png + keywords: + - chainloop + - evidence-store + - supply-chain-security + - devops + - devsecops + - security + - compliance + - cyclonedx + - spdx + - sbom + - attestation + - oss-compliance + - in-toto + - slsa + - sbom-distribution + - open-source-licensing + - slsa-provenance + - metadata-platform + - sbom-discovery + - regulated-industry + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: chainloop + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/chainloop + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane-migrations + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-artifact-cas + - https://github.com/chainloop-dev/chainloop + urls: + - https://charts.bitnami.com/bitnami/chainloop-0.1.2.tgz + version: 0.1.2 + - annotations: + category: DeveloperTools + images: | + - image: docker.io/bitnami/chainloop-artifact-cas:0.95.3-debian-12-r0 + name: artifact-cas + - image: docker.io/bitnami/chainloop-control-plane:0.95.3-debian-12-r0 + name: control-plane + - image: docker.io/bitnami/chainloop-control-plane-migrations:0.95.3-debian-12-r0 + name: control-plane-migrations + - image: docker.io/bitnami/dex:2.40.0-debian-12-r1 + name: dex + license: Apache-2.0 + apiVersion: v2 + appVersion: 0.95.3 + created: "2024-08-09T09:40:03.185802734Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: development + name: vault + repository: oci://registry-1.docker.io/bitnamicharts + version: 1.4.x + description: Chainloop is an open source software supply chain control plane, + a single source of truth for artifacts plus a declarative attestation crafting + process. + digest: 759d25dcadc956a9a03fe5838bb1dab7eba8e5a692526f453278cbe8620ea027 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/chainloop/img/chainloop-stack-220x234.png + keywords: + - chainloop + - evidence-store + - supply-chain-security + - devops + - devsecops + - security + - compliance + - cyclonedx + - spdx + - sbom + - attestation + - oss-compliance + - in-toto + - slsa + - sbom-distribution + - open-source-licensing + - slsa-provenance + - metadata-platform + - sbom-discovery + - regulated-industry + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: chainloop + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/chainloop + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane-migrations + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-artifact-cas + - https://github.com/chainloop-dev/chainloop + urls: + - https://charts.bitnami.com/bitnami/chainloop-0.1.1.tgz + version: 0.1.1 + - annotations: + category: DeveloperTools + images: | + - image: docker.io/bitnami/chainloop-artifact-cas:0.95.3-debian-12-r0 + name: artifact-cas + - image: docker.io/bitnami/chainloop-control-plane:0.95.3-debian-12-r0 + name: control-plane + - image: docker.io/bitnami/chainloop-control-plane-migrations:0.95.3-debian-12-r0 + name: control-plane-migrations + - image: docker.io/bitnami/dex:2.40.0-debian-12-r1 + name: dex + license: Apache-2.0 + apiVersion: v2 + appVersion: 0.95.3 + created: "2024-08-09T08:07:15.638621191Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: development + name: vault + repository: oci://registry-1.docker.io/bitnamicharts + version: 1.4.x + description: Chainloop is an open source software supply chain control plane, + a single source of truth for artifacts plus a declarative attestation crafting + process. + digest: f34dff0e45cd1b72be37c140b56c1138b7e88a0c756b48a1bc935922552bad06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/chainloop/img/chainloop-stack-220x234.png + keywords: + - chainloop + - evidence-store + - supply-chain-security + - devops + - devsecops + - security + - compliance + - cyclonedx + - spdx + - sbom + - attestation + - oss-compliance + - in-toto + - slsa + - sbom-distribution + - open-source-licensing + - slsa-provenance + - metadata-platform + - sbom-discovery + - regulated-industry + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: chainloop + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/chainloop + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-control-plane-migrations + - https://github.com/bitnami/containers/tree/main/bitnami/chainloop-artifact-cas + - https://github.com/chainloop-dev/chainloop + urls: + - https://charts.bitnami.com/bitnami/chainloop-0.1.0.tgz + version: 0.1.0 + cilium: + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.16.1-debian-12-r0 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.16.1-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r9 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.16.1-debian-12-r0 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r4 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2024-08-14T12:24:50.695256752Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: d86e59ce84dfbfe203a05f7bcb3fedbae63116bc82fb18ca7a96af98188042d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.17.tgz + version: 1.0.17 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.16.0-debian-12-r5 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.16.0-debian-12-r4 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r7 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.16.0-debian-12-r1 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r4 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2024-08-07T01:06:18.917191024Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 48aed1588cc4cc6f0e3ed29356e7cba58153b3375d2fb45003ef70ed7f615040 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.16.tgz + version: 1.0.16 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.16.0-debian-12-r4 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.16.0-debian-12-r1 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r6 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.16.0-debian-12-r1 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r4 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2024-08-05T12:59:26.287238323Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 73fccde8533851377f2f0a3349eafbcbccd0a385db080a174d0c6405ad36e5d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.15.tgz + version: 1.0.15 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.16.0-debian-12-r3 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.16.0-debian-12-r1 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r6 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.16.0-debian-12-r1 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r4 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2024-07-25T12:52:44.309951981Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 4a5cb3e35831e6143aaeff3ebfb61ee25f2e00b6c72b8d8361df9bd672d1d613 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.14.tgz + version: 1.0.14 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.16.0-debian-12-r2 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.16.0-debian-12-r1 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r6 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.16.0-debian-12-r1 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r4 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2024-07-25T11:33:10.076013999Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 65523014b18cc4fd062dc8b88efb3e003b9b4dcc7e52544f0d0c32deeaa091a2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.13.tgz + version: 1.0.13 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.16.0-debian-12-r1 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.16.0-debian-12-r1 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r6 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.16.0-debian-12-r0 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r3 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2024-07-25T04:25:49.092813396Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 50dd67d1df26044c2727d311d151cc09e9e5aae4c9d906259e70e5ca4cff4a43 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.12.tgz + version: 1.0.12 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.16.0-debian-12-r0 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.16.0-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r5 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.16.0-debian-12-r0 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r3 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2024-07-24T19:07:43.682506657Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 919d7d3a937628ca9c89a7224e76fe59c0f19bf1ed2e6258ac88290bc1e4c92a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.11.tgz + version: 1.0.11 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.7-debian-12-r5 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.7-debian-12-r2 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r5 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.15.7-debian-12-r1 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r3 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.7 + created: "2024-07-24T13:16:31.264905945Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 7468df59bec60ab5cbdba91980a4b70cf9764bc91b3ced912783df453d361135 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.10.tgz + version: 1.0.10 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.7-debian-12-r1 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.7-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r3 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.15.7-debian-12-r0 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r1 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.7 + created: "2024-07-24T11:05:35.930393463Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 0c9cf2186d77491569b5b0819cf64fd956001544b16b2a258dfb89a51c78c1ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.9.tgz + version: 1.0.9 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.7-debian-12-r1 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.7-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r3 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.15.7-debian-12-r0 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r1 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.7 + created: "2024-07-23T15:44:44.618560002Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 7820f65bf5c419643ee47aa85056fb9f7ba215948dd4442d00d74fa209e0d9f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.8.tgz + version: 1.0.8 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.7-debian-12-r1 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.7-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r3 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.15.7-debian-12-r0 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r1 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.7 + created: "2024-07-18T22:27:16.233697566Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: aa3d7e8196e69b6252ce0c114a64385ae24d054ac01850378639a0771134fcbc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.7.tgz + version: 1.0.7 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.7-debian-12-r0 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.7-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.29.7-debian-12-r3 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.15.7-debian-12-r0 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r1 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.7 + created: "2024-07-18T09:22:26.487568588Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 18ee851f85ca3113c3d23b94f9b0818bf3de979a2c3152516d779ac5539dfb2d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.6.tgz + version: 1.0.6 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.7-debian-12-r0 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.7-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.28.5-debian-12-r2 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.15.7-debian-12-r0 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r1 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.7 + created: "2024-07-15T08:57:32.928981752Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 4630f9211ca4f6577e01aa2ac4499d399f089b00833109ffadec6409b5df05a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.4.tgz + version: 1.0.4 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.7-debian-12-r0 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.7-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.28.5-debian-12-r2 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.15.7-debian-12-r0 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r1 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.7 + created: "2024-07-11T20:38:13.299528649Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 996e304e5c04e53fd0c4af115baf42f7c365fb70f6ecdd0bf6c761f9f95c2fe2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.3.tgz + version: 1.0.3 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.6-debian-12-r4 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.6-debian-12-r3 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.28.5-debian-12-r1 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.15.6-debian-12-r2 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r1 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.6 + created: "2024-07-04T14:32:20.532400681Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: fc6791c0e2d4ce15d15be55a6ce3c61d6e6538adb616278aff63a16a64f6d76f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.2.tgz + version: 1.0.2 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.6-debian-12-r3 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.6-debian-12-r1 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.28.5-debian-12-r0 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.15.6-debian-12-r1 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r1 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.6 + created: "2024-07-03T03:10:18.162976223Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 311e50107fc495ce5d32754d8602eec018298d0c400cc178e8d61da113928ed1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.6-debian-12-r1 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.6-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.28.4-debian-12-r0 + - name: hubble-relay + image: docker.io/bitnami/hubble-relay:1.15.6-debian-12-r0 + - name: hubble-ui + image: docker.io/bitnami/hubble-ui:0.13.1-debian-12-r0 + - name: hubble-ui-backend + image: docker.io/bitnami/hubble-ui-backend:0.13.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.6 + created: "2024-06-27T12:22:42.67672449Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 8aeee6fa45cedb4188aa46e0aa10c5ac8b2ae9734ed383f75960964adf09e636 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-proxy + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui + - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend + urls: + - https://charts.bitnami.com/bitnami/cilium-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.6-debian-12-r1 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.6-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.28.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.6 + created: "2024-06-25T08:32:40.888697112Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 76ebc37e4ce414caea77a359dd82e94751ec7a36615d2a35bc8c73c1a552ac7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + urls: + - https://charts.bitnami.com/bitnami/cilium-0.2.0.tgz + version: 0.2.0 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.6-debian-12-r1 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.6-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.28.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.6 + created: "2024-06-24T08:28:52.34447738Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: b09ae8204eeb7e270749a6937642850d17913e7074f5c70717d4ddfa95b7d647 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + urls: + - https://charts.bitnami.com/bitnami/cilium-0.1.2.tgz + version: 0.1.2 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.6-debian-12-r1 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.6-debian-12-r0 + - name: cilium-proxy + image: docker.io/bitnami/cilium-proxy:1.28.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.6 + created: "2024-06-21T07:56:24.603359811Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 43265271aa74a65023868d984bb85ac226c8f091ce2edef9462c2e87a9e8238c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + urls: + - https://charts.bitnami.com/bitnami/cilium-0.1.1.tgz + version: 0.1.1 + - annotations: + category: Infrastructure + images: | + - name: cilium + image: docker.io/bitnami/cilium:1.15.6-debian-12-r1 + - name: cilium-operator + image: docker.io/bitnami/cilium-operator:1.15.6-debian-12-r0 + - name: envoy + image: docker.io/bitnami/cilium-proxy:1.28.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.4 + created: "2024-06-21T06:15:55.942072206Z" + dependencies: + - condition: etcd.enabled + name: etcd + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - cilium-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Cilium is an eBPF-based networking, observability, and security for + Linux container management platforms like Docker and Kubernetes. + digest: 3eaab38dec82182a3ee0abbac945813887717b89608915b1c9c3329495c00fd4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/cilium/img/cilium-stack-220x234.png + keywords: + - cilium + - cni + - networking + - observability + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: cilium + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium + - https://github.com/bitnami/containers/tree/main/bitnami/cilium-operator + urls: + - https://charts.bitnami.com/bitnami/cilium-0.1.0.tgz + version: 0.1.0 + clickhouse: + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.7.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.7.3 + created: "2024-08-08T18:55:31.391586351Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 56e8374924e2164ef472da692090c4f8b534cfe4d375b03cb4b4223cc4932dd5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.17.tgz + version: 6.2.17 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.7.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.7.2 + created: "2024-08-01T13:38:22.36433632Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 257dc18643920f40f2feb1e52f3083c1c1abdd848481fac4d312393fdbf222b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.16.tgz + version: 6.2.16 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.7.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.7.1 + created: "2024-07-30T22:00:47.696566416Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 333772fc1773836c121ac9566f977c622c32218bdd61f0a5701160dd092ba200 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.15.tgz + version: 6.2.15 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.6.2-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.6.2 + created: "2024-07-25T04:12:41.21712293Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: ff900b90c28e001b11c81c064f5a4dbf0b9622936bd0744c7014855afe503111 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.14.tgz + version: 6.2.14 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.6.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.6.2 + created: "2024-07-24T05:09:50.614413752Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: ba58f886024f3ccd36adf46195acf700eae0701b21fefb6600ea2e25194f5270 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.13.tgz + version: 6.2.13 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.6.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.6.2 + created: "2024-07-23T21:15:49.926516994Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 7777bba071d845f874c79393a415962c47eefe1c580a57c727989d9497e75f30 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.12.tgz + version: 6.2.12 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.6.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.6.2 + created: "2024-07-16T11:41:29.716407915Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9422d3e4e3d5714e9f9c5ce2066a925c158edc5f9bccd9d6a50d0d65a883e5a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.11.tgz + version: 6.2.11 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.6.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.6.2 + created: "2024-07-05T13:45:25.95755686Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 85b82555f7c45c08394c0a6afe32488255b88d6d107f31450504d8cbc1f833ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.10.tgz + version: 6.2.10 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.6.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.6.1 + created: "2024-07-01T12:17:03.754739091Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 152afe41d7d04b2135234a80e58d9a679ee36e3cb9c12b56071672db52ac9296 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.9.tgz + version: 6.2.9 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.5.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.5.3 + created: "2024-06-18T11:38:23.667219511Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 110a168b87902136e44c8ae3db306cec3d9283baae18cda3d014fdf4b7762dfc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.8.tgz + version: 6.2.8 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.5.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.5.3 + created: "2024-06-17T12:18:00.452437637Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: a014d26cd16ba5235081cd3990374e048f36174f0c1fd732bd4a11caea980606 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.7.tgz + version: 6.2.7 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.5.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.5.3 + created: "2024-06-13T21:37:03.734297804Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 58431f758fea54ae3f92307b1e16fc826e4cdf42c1203f12361fb04e63521487 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.6.tgz + version: 6.2.6 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.5.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.5.2 + created: "2024-06-13T16:02:31.307121196Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 4bf3fc9bce33c9bbc3cc7aa01e2e59e6ae66e925b02699d7b6b8ed0de0bfc5e8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.5.tgz + version: 6.2.5 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.5.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.5.1 + created: "2024-06-06T15:30:50.303341555Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: cab8394f5686fa7abda652a25246b50b062f229ee48f6855f1b7506196ab1503 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.4.tgz + version: 6.2.4 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.5.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.5.1 + created: "2024-06-05T14:17:06.151249527Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 1711138d2a7b3c7e35e1fd6a4b091ba3bc6c2a767e7caf18ef79840d64710bea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.3.tgz + version: 6.2.3 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.5.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.5.1 + created: "2024-06-05T09:45:26.532112859Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: b8cb657b1f340cfedd80a01a339366ab2c4a572858b878a3e368b8c8946869b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.2.tgz + version: 6.2.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.5.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.5.1 + created: "2024-06-03T05:52:33.112122138Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 24ce08cfa9a40191407878070852ab88368187ed202fb094418187196cd84ef9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.1.tgz + version: 6.2.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.4.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.4.1 + created: "2024-05-28T07:51:23.428148669Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 07366cafdec23cfed234c64e7e217826b04f052e1c5583c067b9636fff6e58fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.2.0.tgz + version: 6.2.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.4.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.4.1 + created: "2024-05-23T14:36:54.602483227Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: af57f882a088f958175b9b251f8f1f7ecc5fdd5cad7d375787d26485361a9156 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.1.1.tgz + version: 6.1.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.4.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.4.1 + created: "2024-05-21T14:21:22.639166854Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: e7756a053615c4f0d7f25205bb793ffa5d50c8f11fdf88c5af637760bc3e18d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.1.0.tgz + version: 6.1.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.4.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.4.1 + created: "2024-05-18T00:25:46.806083492Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 79f955657ed61795988a7374e4d37fc31ac24170641f063c0af7964308a5c443 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.0.7.tgz + version: 6.0.7 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.4.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.4.1 + created: "2024-05-15T15:41:43.974814181Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9b49e7d0204d4ac8b38e2c5546f131e96b1ec74c3a3912d1d3c004c470375c5c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.0.6.tgz + version: 6.0.6 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.4.1-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.4.1 + created: "2024-05-13T22:35:28.270007079Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 1df1f7b63fa25dc1e87e062f5cb79bafee11e02554cc9745e26faeb490412cfa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.0.5.tgz + version: 6.0.5 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.4.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.4.1 + created: "2024-05-13T11:33:59.074428103Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 37b09d6d1765946badcc7df2a12efab511a8d8a74d00bb85d55d5d9e7c592fc0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.0.4.tgz + version: 6.0.4 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.4.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.4.1 + created: "2024-05-01T05:13:31.330182566Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 0fa649498c1a1795640b9bccaf3fcad0b0931b0f314fa7a298182f25036d1b08 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.0.3.tgz + version: 6.0.3 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.3.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.3.2 + created: "2024-04-09T08:14:45.919312265Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 1a1b3bd0e72bfd53de3fe8fe16cfb3572409b532dc274e9a13bdc46d54abaed5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.0.2.tgz + version: 6.0.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.3.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.3.2 + created: "2024-04-05T23:25:05.309492049Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 84dd0cfa099595e3bedad15ee75a28ba2a79e857b7b22406bd856bf64819cc61 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.0.1.tgz + version: 6.0.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.3.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.3.2 + created: "2024-04-03T14:46:47.500714788Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 989eb120751293b5baed0cd636490c345f45b88c9f17fbaaae3b15c7bf3661d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-6.0.0.tgz + version: 6.0.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.3.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.3.2 + created: "2024-04-03T14:05:59.305129906Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: d3998dcfb73a218ef12c23bc483d29f3cb5fc8c6d9bdf9cd3955c309976bf196 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.3.3.tgz + version: 5.3.3 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.3.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.3.1 + created: "2024-03-27T23:12:04.763200482Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 132caf6053f276f289f15757345b6e8b5a07d63c825b1c15dfcfe1cd180d80f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.3.2.tgz + version: 5.3.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.2.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.2.2 + created: "2024-03-15T11:12:26.050215847Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 58bc425459a8547c4f158e05d9157563a3450b1c46e80ca1e1e376b45ba04366 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.3.1.tgz + version: 5.3.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.2.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.2.1 + created: "2024-03-05T15:01:54.783720167Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9391004b33419845f8ba7a0c001ec5b620d007319f9bbfab50fd16f4be68c7e1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.3.0.tgz + version: 5.3.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.2.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.2.1 + created: "2024-03-01T14:04:53.113043441Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: d6a38ee17d3c9eb0d112a319752aabdf1db61c76a16d8fdb1e4391d7873534d9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.2.3.tgz + version: 5.2.3 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.1.5-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.1.5 + created: "2024-02-21T16:14:44.256690862Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 72e2e0146fa0430334e5f6ddc84b71888f2de02b07a2847284d9bdf439aa029c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.2.2.tgz + version: 5.2.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.1.5-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.1.5 + created: "2024-02-21T13:01:53.111112168Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: cb6620a4ea4f17275e7c006ee0cbb4957adf63349b7e33cb580642e4585be615 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.2.1.tgz + version: 5.2.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.1.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r107 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.1.5 + created: "2024-02-16T10:07:51.77914792Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: f684245cfad3b98420e16ba68310f751355597b3b7565d357db1a9003107a14d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.1.0.tgz + version: 5.1.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.1.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r107 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.1.5 + created: "2024-02-14T22:16:45.495573406Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 5b41bf7193292dddcb91758b7276f6d527e52b5ea56431bf13734f1cd3e787be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.0.2.tgz + version: 5.0.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.1.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.1.3 + created: "2024-02-09T18:47:46.747417666Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: fc5cff169897f52232b7a9c02d8dcb469d2cb0a0033430e1d3afa51216f0d53a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.0.1.tgz + version: 5.0.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:24.1.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.1.2 + created: "2024-02-09T17:19:51.552161049Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 4cd55f4242f38a5056c6b6e7327e7a66a0bc2691c604ccd996580ea99a44a594 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-5.0.0.tgz + version: 5.0.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.3 + created: "2024-02-05T15:14:03.424002246Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: bb069d3125044bfad9dae6073792571524afe87eb77db991ad817bcbe06b61a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.6.0.tgz + version: 4.6.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.3 + created: "2024-02-03T08:02:59.374262032Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: b28502aa054ab5e1de9691f545f851c54d547cfb3e44148ff860d5394b57ffd1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.5.4.tgz + version: 4.5.4 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.2-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.2 + created: "2024-01-30T15:20:34.622333222Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 666864c58c013d784f8822f106a55906b696f45c47a8b00bf22feb5771a93ac0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.5.3.tgz + version: 4.5.3 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.2 + created: "2024-01-29T20:47:12.228754209Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: aad02dac48a5ff5687302b895b38c23cc447f07bab99940ce8556aedfedfe1db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.5.2.tgz + version: 4.5.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.2 + created: "2024-01-26T08:29:48.33942096Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 492611470d237259e63b1b72c77aba043b998d057d24c067b9fc84f0daa1fa3d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.5.1.tgz + version: 4.5.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.2 + created: "2024-01-22T11:21:03.896751628Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 831217c85a03c4f23626843993131b73f3413bebf559b551ea3513c0c1adf20d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.4.0.tgz + version: 4.4.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.2 + created: "2024-01-18T14:27:15.233527013Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 1621284d1f5deae87979bd6dc8acf56503fa665ebeebd7a6f9f7288d9ad21e92 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.3.1.tgz + version: 4.3.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.2 + created: "2024-01-16T15:29:35.082471637Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: e8f5c47e9aac523c45c2772ac8ebd957f88db5d4145c4b8454dade7475cf9a49 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.3.0.tgz + version: 4.3.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.2 + created: "2024-01-15T08:36:33.118191125Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 298d558d60fb5137c411acc14f4353388bbdd0888f4af951ff732b1c6b3e0857 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.2.1.tgz + version: 4.2.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.2 + created: "2024-01-10T12:24:29.139716259Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 8da22592ded10aacf2cc7216e8357432ade125721b83685bd84f3181ccdcfa16 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.2.0.tgz + version: 4.2.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.2 + created: "2024-01-05T18:17:49.94895416Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: ed85b749dfa895e5a21daad3eb5f71ad0603e26aa66608a2bd95dc52d2725573 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.16.tgz + version: 4.1.16 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.12.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.12.1 + created: "2023-12-28T14:00:49.396038458Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 7cc82f1e4f9606056d18389b7ba88635312673025484288bf0e3ae21989971ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.15.tgz + version: 4.1.15 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.11.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.11.3 + created: "2023-12-22T12:23:38.303253327Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9a82e5bfca6d7846b3c72858c7d0c34bc8836b96c9d84422194272df094bf53c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.14.tgz + version: 4.1.14 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.11.2-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.11.2 + created: "2023-12-15T07:01:34.970709695Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 117335bb30351752e76d023e41152f4b4ade39191fb6455d57aa05230561c751 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.13.tgz + version: 4.1.13 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.11.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.11.2 + created: "2023-12-15T02:07:02.817108608Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 331e8f378e6776ca5e64a5fded88d5bec71bce26aed34568205226cafb5cad44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.12.tgz + version: 4.1.12 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.11.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.11.1 + created: "2023-12-14T06:04:25.983760755Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: d4bff0632f0ad455d7447a8593955dcb22bd41804de50a2dab3d3b4e7c9e4a7f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.11.tgz + version: 4.1.11 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.11.1 + created: "2023-12-08T12:16:11.084967283Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 853fc3f3e29239a075e5c9020ba29293fb4571f33eee2d6fa0dfd22d9fe2ba39 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.10.tgz + version: 4.1.10 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.10.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.10.5 + created: "2023-12-08T12:33:53.539011049Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9d7643517aef48a1378728cfd38a14b03bc60a74071e02a6704e790c64ca6832 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.9.tgz + version: 4.1.9 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.10.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.10.5 + created: "2023-11-25T23:07:13.017797253Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 801f0db2fb9167aeb6d1691d3f5e76c372af8a33d2873aa2e56c0cfbe9a0d63e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.8.tgz + version: 4.1.8 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.10.4-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.10.4 + created: "2023-11-21T18:15:25.262116467Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: e84370877567f45d1bb19658a00364567db19d657e60afc3c2f68f0e27949da5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.7.tgz + version: 4.1.7 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.10.4-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.10.4 + created: "2023-11-21T10:20:38.178250646Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 35d16b6d3bb5ed7e1edc4739af9bcdae9f077663410ec8b35bc0b548a873ebc1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.6.tgz + version: 4.1.6 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.10.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.10.4 + created: "2023-11-17T13:54:43.182551713Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 14b46077180c237ebf9e483a8e8a33e697afcab372fec11d1488cce9b4304e31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.5.tgz + version: 4.1.5 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.10.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.10.3 + created: "2023-11-11T03:33:50.695707392Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 63acf7b9e6b14c048a2226c4961dc44b579c55de0044d87c736c525909b781f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.4.tgz + version: 4.1.4 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.10.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.10.2 + created: "2023-11-08T20:17:25.16216234Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 3de1062b673b0279ee0afc5a36518ceca052a6764825c51cd915febb23f50c48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.3.tgz + version: 4.1.3 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.10.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.10.1 + created: "2023-11-08T16:04:34.74639061Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 913044de06fb04f2ea7f8bd575903f89d1016db8788197b203faa4f34e8ba14d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.2.tgz + version: 4.1.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.10.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.10.1 + created: "2023-11-03T00:23:43.231990938Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: b6961855a1fe67d1d8eb6e74020ad4f7c122c949186dfc65aec46657652fedfb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.1.tgz + version: 4.1.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.9.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.9.3 + created: "2023-10-31T15:33:48.212859106Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 3a06c0a67d492e6d0c5adc0aaab73a8007ed1c0507da352978d5a9892f417699 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.1.0.tgz + version: 4.1.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.9.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.9.3 + created: "2023-10-31T08:48:09.933896492Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: d4d2b1ed5b893907ecd438fa541b701a6583333d6d0d18ad5bbab96712af32f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.0.10.tgz + version: 4.0.10 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.9.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.9.2 + created: "2023-10-19T06:26:01.939949512Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 98d3eee3cbd03043abeafdf0594573435132624ae259968c70a046fae030454d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.0.9.tgz + version: 4.0.9 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.9.1-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.9.1 + created: "2023-10-15T10:30:14.474689583Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 2072869d44007e694262f7bb908e4670f42b2b2639fa7517b0994461fa3efdd3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.0.8.tgz + version: 4.0.8 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.9.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.2-debian-11-r68 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.9.1 + created: "2023-10-10T03:18:46.651567779Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 01b157d6d2f86d79c1ffb258b2cd038062dfae9523340bab485e653fcedf0d52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.0.7.tgz + version: 4.0.7 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.9.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r83 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.2-debian-11-r61 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.9.1 + created: "2023-10-08T21:53:08.686975552Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: c4977ff12b00829bf971af8c9c88acbfc97af2432c1ddf6a4f2a8907c2ee2c9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.0.5.tgz + version: 4.0.5 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.8.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r82 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.2-debian-11-r61 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.8.3 + created: "2023-09-29T05:17:03.689626896Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: c66b4fc73fb068b188b25758ba2bac3f644335da66f7ad57d2c88fa06f422af9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.0.4.tgz + version: 4.0.4 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.8.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.2-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.8.2 + created: "2023-09-25T09:21:06.456244252Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 381b14879d537c7f7fc046e3a28598a870cf9d119dccd25c81a7739e5e61ed0a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.0.3.tgz + version: 4.0.3 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.8.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.2-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.8.2 + created: "2023-09-20T09:51:39.995047059Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 02d6134fc4e43a3db5a6b4f7caf7cb330080ff946b45a5c73aa22112954ae6b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.0.2.tgz + version: 4.0.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.8.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.2-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.8.2 + created: "2023-09-14T08:11:57.785835137Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 83355a78ea7a9793b45837e4fc34d1874399b8f20649feeb9580d1ffb675203d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.0.1.tgz + version: 4.0.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.8.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.2-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.8.2 + created: "2023-09-12T07:31:00.005944743Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: fc02659544777bf423e9d11dc512fc953c98e3f6f25b521a4cd6ee4adb016899 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-4.0.0.tgz + version: 4.0.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.8.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.2-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.8.2 + created: "2023-09-11T14:48:49.324770416Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: d7e415eb65ae03ad3102eb4d686d232c2fb4384ec9769923db9657a223eec75b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.8.3.tgz + version: 3.8.3 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.8.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + - name: zookeeper + image: docker.io/bitnami/zookeeper:3.8.2-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.8.2 + created: "2023-09-11T11:24:04.675784471Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9b6786ead519f556e8c40aa9d5317f1b5524e925fe169bbdf423b6d816a8ba89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.8.2.tgz + version: 3.8.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.8.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.8.1 + created: "2023-09-06T17:29:33.538375389Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 7c0ebcdbf926365cbf3cef8343af8e743f83ebde4bc0ab436287b267c9e5fc83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.8.1.tgz + version: 3.8.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.8.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.8.1 + created: "2023-09-04T11:20:46.406404671Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: b7661d96146d5875c33b0be2012864863e8e90fe6c36474902a7fcb2a415e935 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.8.0.tgz + version: 3.8.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.8.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.8.1 + created: "2023-09-04T18:54:03.2953044Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 4b89118b5bfb4ac47bb39ee8761166056db81cf98fd1b404a28e1998744e23a2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.7.2.tgz + version: 3.7.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.5 + created: "2023-08-28T15:23:39.277640914Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: d4996f1cf77f6aaa841c60e7215bee5e4f190e56a7b960a6d77253ca8b5ee20c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.7.1.tgz + version: 3.7.1 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.4-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.4 + created: "2023-08-28T11:28:32.951268967Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: bfd744be140f1d6356603f34216c11db6ddd350f1be8e45fd405b96e42a74ffa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.7.0.tgz + version: 3.7.0 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.4-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.4 + created: "2023-08-23T20:05:31.618829396Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 142ccb1c53ca0af3489350fc4f4a3ce99e5d75552ea6ec0d34cdf69996806ab2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.6.9.tgz + version: 3.6.9 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.4-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.4 + created: "2023-08-19T12:36:10.170280028Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 232a9dd6831032c2e5fba16a1c5b51a5be5d3f59717c85472e4e2230848ec1d9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.6.8.tgz + version: 3.6.8 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.4 + created: "2023-08-18T16:59:43.283503295Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: d405fa145b27f0399d17a46bd70f2abd93a0468def0dc0fc2278c48336e37d28 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.6.7.tgz + version: 3.6.7 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.4 + created: "2023-08-17T13:15:01.068344467Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 10a0bd580358f1b875405c0d774ea9e3b569c78ba74eafdcbd5f05f05672018d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.6.6.tgz + version: 3.6.6 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r37 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.4 + created: "2023-08-16T14:29:44.128017619Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: b146e3604e152d7900c74069737d9f01a563f5301776a3d74f0c70047571e562 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.6.5.tgz + version: 3.6.5 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r37 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.4 + created: "2023-08-14T11:59:38.537963255Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 44e393fc893218b8b3a8d009f8206f21db98338021d2cd2dbb06fd5247a7d47f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.6.4.tgz + version: 3.6.4 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.3 + created: "2023-08-08T09:42:15.378732164Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 1e02ea808fe94bc84af9e98a8b6d1addc536c5560cea787750aea1ef25e7a590 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.6.3.tgz + version: 3.6.3 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.3 + created: "2023-08-06T00:29:07.316124953Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9786bac9ca4121e2defdcd2cc3147c00bd3b93460610156d69df241bcd43f487 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.6.2.tgz + version: 3.6.2 + - annotations: + category: Database + images: | + - name: clickhouse + image: docker.io/bitnami/clickhouse:23.7.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.2 + created: "2023-08-03T16:25:29.634163614Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: c990f0a971aa8bdd36560d2b24b684d5a69f3a9c7df22fb94eedfd8acbbc5f06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.6.1.tgz + version: 3.6.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.1 + created: "2023-08-03T12:20:41.317079064Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 8180d1db6d3f60004225da426ef235825c75de36ff655eddd568c33f1cc8942e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.6.0.tgz + version: 3.6.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.7.1 + created: "2023-08-02T12:55:50.129339513Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: b56121e218ce529929b58caaad8fd18509f230d89c02e9d1a28ee27a7d67d9fb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.5.8.tgz + version: 3.5.8 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.6.2 + created: "2023-07-27T07:05:28.048884932Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: d3e42c07c26bb4285223a0d935679347273fb11de9aa792cc7a00b394d4814b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.5.7.tgz + version: 3.5.7 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.6.2 + created: "2023-07-25T08:40:31.640656177Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 243ef9b89373c2b19be4f85baab557f9b3d45f6a6b9452bb275fe7197c444df0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.5.6.tgz + version: 3.5.6 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.6.2 + created: "2023-07-15T09:40:38.072231397Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 5b680e7e1e37beaf0adbfb1b815a27d0ac7eda5cec89dd41e3eb2b194501094a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.5.5.tgz + version: 3.5.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.6.2 + created: "2023-07-09T06:30:40.64691487Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: a9deb5c5c15e768c25d5c68c95d4df330012dfd5b8607c244151412f9cb546fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.5.4.tgz + version: 3.5.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.6.1 + created: "2023-07-05T21:17:41.110780592Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: a12cbcc47a9b816b8a515b08af6a62d1817d3f9ad053c2bbb58e69ec1195acf8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.5.3.tgz + version: 3.5.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.6.1 + created: "2023-06-30T20:47:28.470811463Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: f6d61ac33a3449fba190cc49c522f25676fe63559c17835af9a3be5782bc464a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.5.2.tgz + version: 3.5.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.5.4 + created: "2023-06-29T18:40:39.315476265Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9fa7fbcd25522995658f88ce4ef8ff5926bca141fe1f807b4e2df385fbbb2c5d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.5.1.tgz + version: 3.5.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.5.3 + created: "2023-06-28T12:31:20.520269607Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 6484074c42e8b11728cf21ae943d498bc1f2c3d9f496b21d7187f8375970bafc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.5.0.tgz + version: 3.5.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.5.3 + created: "2023-06-17T19:53:40.930231351Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 210234ab094b2b7ebd00a826c64273f6988b853bcee6db68c06e4e5d7cb423e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.4.4.tgz + version: 3.4.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.5.2 + created: "2023-06-10T23:09:42.625003768Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 513a986f3de7b9fde07e5aadf177e460a2af1436623ab9ec9bbba4f46db2a01a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.4.3.tgz + version: 3.4.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.5.1 + created: "2023-06-09T13:54:05.481075199Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 558beaeb05b881123175d51062d4b55ffcaafa2199e5755ce6bbecf437f20487 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.4.2.tgz + version: 3.4.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.4.2 + created: "2023-05-21T14:41:10.921913454Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 2e433f83cb2b14dca0e48e120f480973e7fe9ca16516b5b4eb220e81bac9393e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/clickhouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.4.1.tgz + version: 3.4.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.4.2 + created: "2023-05-09T15:45:29.93523179Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: e2835c05f29e7b291904e62832e541c68ac039bc9b8f6cab8c1b1e0f2b19f8a1 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.3.5.tgz + version: 3.3.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.4.2 + created: "2023-05-02T22:04:25.284553943Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 216f7ae4db491faf580b9580fe34752e6f0e321a0c6791716ba83f416e0fa495 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.3.4.tgz + version: 3.3.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.4.1 + created: "2023-04-29T03:07:37.191131841Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 86bb98bf5de50820bce6ab6ca9350ab363db6bd917daca400074c951add0960e + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.3.3.tgz + version: 3.3.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.3.2 + created: "2023-04-28T13:56:00.540457969Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 95ab16ccf614ae47738c99d9f969755fc4dc00980e2a3d9c532759f54e23e678 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.3.2.tgz + version: 3.3.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.3.2 + created: "2023-04-25T13:33:03.75189449Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 056f06e8a508087e878e6c4cabc96eaf99c2f3b3bf208a7eda732ba716612ea2 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.3.1.tgz + version: 3.3.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.3.2 + created: "2023-04-22T19:54:35.65465512Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 161be6acc6d2a11b41a20748b6a45b6ea6ffa0a51c1b842f4b90580b02de67aa + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.2.1.tgz + version: 3.2.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.3.1 + created: "2023-04-10T09:41:25.643290909Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 71fba3f7ca3aa323931b5cd1e2411c39d1bf449ead57f149c005edcee8543d36 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.1.6.tgz + version: 3.1.6 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.3.1 + created: "2023-04-01T11:56:53.847118084Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9f5da8a54ba098f369829ff96ae8f517e977b095a99262b509578dea018b42f9 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.1.5.tgz + version: 3.1.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.2.4 + created: "2023-03-20T09:31:01.162009172Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 68bca8d4a3e74668f4a9ed1e30a954c55736061cd409c4778493bd75ddeb7408 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.1.4.tgz + version: 3.1.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.2.4 + created: "2023-03-18T22:17:11.567454285Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 039ed3a73b5df4ab6635a2244668e9f2c43e5e062c64fcdab71c774d0e8f31ac + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.1.3.tgz + version: 3.1.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.2.4 + created: "2023-03-17T08:48:30.479105987Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 46b731f4130bc5d575b647eca9db59d94e85959a3b0f032f832eff5ff8b5797c + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.1.2.tgz + version: 3.1.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.2.4 + created: "2023-03-10T20:26:58.909195789Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 87df3e3e54fb15bdbf73640a5ea25dc2b23aa224945c8ce6daae1decb9fbca88 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.1.1.tgz + version: 3.1.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.2.3 + created: "2023-03-10T09:27:33.909743257Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9dda90fcb788c51e04afc9177616296f80087736df039ed55b22c9320ebca544 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.1.0.tgz + version: 3.1.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.2.3 + created: "2023-03-07T09:55:42.110093247Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 99ff271e44b7ad5ee856061e31ad3937783656131f69f542809abb777494b7b6 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.0.7.tgz + version: 3.0.7 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.2.3 + created: "2023-03-06T19:09:02.998025559Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 3fe5ca84856241b185bb186877addb716ae24942d06c89277bd8a9201bce01e2 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.0.6.tgz + version: 3.0.6 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.2.2 + created: "2023-03-01T17:19:50.697611151Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 863acf1c1ae4467e6246080874105d2b54e4c75776d2a40890be0318ba9c7790 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.0.5.tgz + version: 3.0.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.2.1 + created: "2023-03-01T09:53:07.014807527Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 2a92d21d7665b11c0d11c9d8fb2d522ccc9fe1473031e0a5800ae3f23f44e163 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.0.4.tgz + version: 3.0.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.2.1 + created: "2023-02-24T22:17:35.705767407Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 06a967689c61e7b9bb2e6f4f28e241e89c27ec4b8d70f576ddcd9a1402bb79a8 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.0.3.tgz + version: 3.0.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.1.3 + created: "2023-02-17T16:35:04.208837671Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: f94e7d2695ba90c3438bfae1855cd26f51fd62523539c376a77b8068fa74f9d3 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.0.2.tgz + version: 3.0.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.1.3 + created: "2023-02-13T10:42:03.061414069Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 5777372b6c6a096b817f255a60921d58f4c170020036248ea9462a62d11d094a + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.0.1.tgz + version: 3.0.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.1.3 + created: "2023-02-07T16:17:58.886776771Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: c7b7d91378cce101ebc76cfd56ce4b6f7203f570ac0f22e7e97f3136b6c278b7 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-3.0.0.tgz + version: 3.0.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.12.3 + created: "2023-02-02T08:45:02.520376013Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 0d2b79746938cbfd70a0b855ac15c7507947a05828f9396ee74719e7eeb2834a + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.3.2.tgz + version: 2.3.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.12.3 + created: "2023-01-17T16:28:07.057473667Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 586a6b0713c446098815ba6adac6eb786a660e14d4b358d03f2e1c7c87deb6bb + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.3.1.tgz + version: 2.3.1 + - annotations: + category: Database + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 22.12.3 + created: "2023-01-13T14:27:23.455202049Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 812329db015dd1ac9a03519ff06aa7c9940715fadcf3de5c029e0b40cab5586a + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.3.0.tgz + version: 2.3.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.12.3 + created: "2023-01-10T20:13:13.43278956Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: f4f911dfc88fb1a32ff123cfc491f561f54acd744666e8c69823acab45712896 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.2.4.tgz + version: 2.2.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.12.2 + created: "2023-01-10T11:50:24.296725769Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 5f96c87751c7ff77cbf3ef25560f9fdd111427c0a6ac53e8b83bee0541fa2ec3 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.2.3.tgz + version: 2.2.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.12.2 + created: "2023-01-06T19:54:35.735635049Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: b14bde45462a87c8369d697b12a1db54b82ea250b29c87c0a321c571fb0b3479 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.2.2.tgz + version: 2.2.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.12.1 + created: "2022-12-23T10:08:30.97358148Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: c4088c9b471c1ff658bfb4a67b2a223ec9f8dfff072a4c554c715a4d88e79344 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.12.1 + created: "2022-12-21T08:31:07.378059333Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 217f24e03b99a75d88536df1d7d59a223c72cda824138592ca6336aab945cf62 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.12.1 + created: "2022-12-15T21:00:17.59579106Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: eaec93785f9409ecbf799b4b7a26bc5589efc5c22e58edc217b3112c267e54ac + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.11.2 + created: "2022-12-12T09:55:44.928361515Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: f77db0ca2025e9cec8e0de02590aeb1d975a9d173a301a311288a0faa3aa70c9 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.11.2 + created: "2022-12-06T10:56:40.195306344Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 752a81e114c6631360eb313d8553dedeb85f113944010ab46afc9d414eed8d99 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.11.2 + created: "2022-12-03T00:28:14.141852314Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 7ef7c093a9a3bc568b5285bf540d9bada39e96b629dedc828976f2c72479c267 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-1.0.6.tgz + version: 1.0.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.11.1 + created: "2022-11-28T20:54:02.070292916Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 11aad90e9762dac9f360ed9b04069ab20b608646d28cc7811eefff38e3aeee54 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-1.0.5.tgz + version: 1.0.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.9.5 + created: "2022-11-24T10:50:36.019699734Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 247273ba3c7386eb883aeb0335101a87cf71d4bf8967d350a059dd5692ac24d9 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-1.0.4.tgz + version: 1.0.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.9.4 + created: "2022-11-03T12:01:28.946160842Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 4abb024bb6031ae6c1a5236634e1d8e0112add36515e60ca7dfd883a3aca4ce4 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-1.0.3.tgz + version: 1.0.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.9.4 + created: "2022-10-27T15:39:56.799736008Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 4cf5bc1b3a7b4e28ed0e56f9ccd37a27e068afb83ef875ac9ffeee808687789d + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-1.0.2.tgz + version: 1.0.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.9.4 + created: "2022-10-27T08:36:33.12940703Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: a0ac3f3f9b1d270b85ce47fceea76478f3cd977b2589aea0743948bb62f5780b + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.9.3 + created: "2022-10-11T18:20:08.894669619Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: bd0062f39c12e63bc81f3751e62a2ddb136e0f0cd2c3338ef91351400873eff7 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.8.6 + created: "2022-09-30T14:33:18.139404583Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: ca10da78377a9da210ffbe21b937f0126721a475a44101009e739eede1b3f850 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-0.2.3.tgz + version: 0.2.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.8.6 + created: "2022-09-30T13:30:04.408495865Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 8a44c12ab82a9ffb38ae2facee15483149b87a57fec8a9eaadbeaa39cd02d472 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-0.2.2.tgz + version: 0.2.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.8.5 + created: "2022-09-28T07:42:16.178879352Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 8306607ae2ee7de6ee4fb1eb9e3a1f64735228b318989828a077657c0c0bd53d + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-0.2.1.tgz + version: 0.2.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.8.5 + created: "2022-09-26T08:54:50.610613818Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 83ef811a2989f73eb994e5ad60801b9ee8e06bd2bee67971a18d685168d373f6 + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-0.2.0.tgz + version: 0.2.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 22.8.5 + created: "2022-09-23T22:28:07.754286811Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ClickHouse is an open-source column-oriented OLAP database management + system. Use it to boost your database performance while providing linear scalability + and hardware efficiency. + digest: 9b6d18f777977ae97e44d3161189a388a1cfc790d8f08b963bff38ea5ed6998e + home: https://clickhouse.com/ + icon: https://bitnami.com/assets/stacks/clickhouse/img/clickhouse-stack-220x234.png + keywords: + - database + - sharding + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: clickhouse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/clickhouse + - https://github.com/ClickHouse/ClickHouse + urls: + - https://charts.bitnami.com/bitnami/clickhouse-0.1.0.tgz + version: 0.1.0 + common: + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.22.0 + created: "2024-08-08T09:36:39.515268382Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: f08ada920444add76d87a23c588089bfa1a59dd9cf516abe47bbc8aa0da9aee4 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/common + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.22.0.tgz + version: 2.22.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.21.0 + created: "2024-08-05T15:50:02.870649658Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: e47c1affdba747c5bb14f44a4d58a0466051ad6b91715a2f2493c2d6e3f3ba5e + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/common + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.21.0.tgz + version: 2.21.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.20.5 + created: "2024-07-16T09:21:02.365636711Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 992489543b30acf8c7bb7e27ed8d97eff210a05416d0c92800cb216cda5ef1b0 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/common + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.20.5.tgz + version: 2.20.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.20.4 + created: "2024-07-11T13:50:52.960594338Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: b9213d25e9ddd70cc866a1a2ec22ecc55879dbaacd60754d88b65575a208bbc7 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/common + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.20.4.tgz + version: 2.20.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.20.3 + created: "2024-06-17T16:26:01.733114721Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 013581fe052abd97375ffaab01c8fe4232be678543c55871c6c78f93b32d3f67 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/common + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.20.3.tgz + version: 2.20.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.20.1 + created: "2024-06-10T11:15:16.322359908Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: d1117d07e91798824ad755673bf681646e4badbf0e4a557013c962b5a1a9876d + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/common + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.20.2.tgz + version: 2.20.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.20.1 + created: "2024-06-10T07:14:37.048590183Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: d7325d9b6735f117dfd3324d3be08b63ec7b0d514c46971267682bb16760d1f7 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/common + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.20.1.tgz + version: 2.20.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.20.0 + created: "2024-06-05T09:13:30.368381968Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 82585d51e1013a447e4cb8bdb9eb378681d246a69266fda99c85d1d5d15a113c + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/common + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.20.0.tgz + version: 2.20.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.19.3 + created: "2024-05-20T15:26:22.119893728Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: e009fa62d2b39892337d7bd5be9cdcc0108393f5ba27810c403dc63e8f78c17a + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.19.3.tgz + version: 2.19.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.19.2 + created: "2024-04-29T14:24:12.519660258Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 8837f406afebd1c6da8bb1199e17dc02190f10368f061be27672dca62d1a83c2 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.19.2.tgz + version: 2.19.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.19.1 + created: "2024-03-27T10:53:31.002311857Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 434ee126e8d208e963295648b0378c3b5ab93ff09b6ab9236ca8809c797f85bf + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.19.1.tgz + version: 2.19.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.19.0 + created: "2024-03-08T09:15:12.977902761Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 89e4008ba84ebc4b1838b7266bd991958f57eedb841e9268726de971dc78cfd1 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.19.0.tgz + version: 2.19.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.18.0 + created: "2024-03-04T17:23:51.725451222Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 5d3e980dbef322fec77c5fe9213458f2616501e8d9148fe57bc4bad21c003970 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.18.0.tgz + version: 2.18.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.16.1 + created: "2024-02-19T12:20:15.486485257Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: ecfb0608e9623e975fb20b9839d695d65d59601f4dd0df7b9a9e093187b0c924 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.16.1.tgz + version: 2.16.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.16.0 + created: "2024-02-15T11:39:06.310508797Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 20444027ff56a697e695269f52558a9a181ac9dbfaa80f3aae5b397e0068ded2 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.16.0.tgz + version: 2.16.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.14.1 + created: "2024-02-14T10:31:51.244227124Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 0ccf569da00bdfaced1cc35e41e503c6fcfdcfcae15aa85ea8468d9fa2504f96 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.15.3.tgz + version: 2.15.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.14.1 + created: "2024-02-14T10:29:46.517876202Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 8234f8435ad6f4b74588e8ef4b2481be94d73784c0c828479c0118a3d2508209 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.15.2.tgz + version: 2.15.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.14.1 + created: "2024-02-13T14:50:03.952013479Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 122a47d11257562fb2bf962547869e9880b64dc37e827e8389d6140ef3b2d63f + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.15.1.tgz + version: 2.15.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.14.1 + created: "2024-02-13T12:23:21.573148557Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 25466cd1a3086bbc34503e65bddc04f85b669035573a18cee9f9cf48c8ea1175 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.15.0.tgz + version: 2.15.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.14.1 + created: "2023-12-19T18:21:18.567908227Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: a40d83bb48d1f6102c7c91bf095b120c39661e1dbc6ecf7ad4eaa8a754e5cebf + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.14.1.tgz + version: 2.14.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.4 + created: "2023-12-15T11:24:45.873142098Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: e54fca2f8a760099418119f8a255bf0e26531767dd38d7e84cb7fa055f4fe556 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.13.4.tgz + version: 2.13.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.3 + created: "2023-10-17T14:00:56.745164282Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 08a46a850789938ede61d6a53552f48cb8ba74c4e17dcf30c9c50e5783ca6a13 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.13.3.tgz + version: 2.13.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.2 + created: "2023-10-05T14:02:49.660705885Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: dd5454cdecdc05287e6fa2a4b5b4640655ba229684d786702b970b5156127d10 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.13.2.tgz + version: 2.13.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.1 + created: "2023-10-04T09:32:11.782826322Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 8ddbab3b102f4dd744014912d855fee2be02552f126ddc8eab3d413bf78dfe29 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.13.1.tgz + version: 2.13.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2023-09-29T07:14:38.460529766Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 74615075de3cc500e5cde5c6aa26eae4069f466f9ab160a48b09e485912acbb5 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.13.0.tgz + version: 2.13.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.1 + created: "2023-09-29T06:05:57.866773203Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 5c59b2d5cb1f0ce00e34a81b030a63bfe5671975c7df97b0245ed7e5a59e4523 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.12.1.tgz + version: 2.12.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2023-09-22T09:08:12.854566538Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: f5af43ee22b7674b06ee10fe87fffaa0fb9a067df3ba5fedc140a2e222c5df71 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.12.0.tgz + version: 2.12.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.1 + created: "2023-09-15T10:31:26.266684172Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: fe64960b1907016d9eddceddc0b04b2b67852260dff46cff02a707496d1aa284 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.11.1.tgz + version: 2.11.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2023-09-12T08:26:44.167329575Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 9fa5ef08737007cb28efdb356dff6480280066ccb4c61d3d95e4f4e3582c5ca1 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.11.0.tgz + version: 2.11.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2023-09-08T11:07:17.269040131Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: c0c8a32b011e060c4158438f3395b514cc2342d1c86833a47d61c476f1fb0b8e + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.10.1.tgz + version: 2.10.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-09-04T09:43:51.858799735Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: c0e3d1e22e2e9482743d22a408ca76a9cddc486cd0f05b15e7eadaf56190305a + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.10.0.tgz + version: 2.10.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-08-31T14:52:49.914314801Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 450ccbb4253c44c572ebed006240351152b3c8ebfdc9a5765328bc8beeb6580f + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.9.2.tgz + version: 2.9.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-08-29T12:29:02.295352438Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: d6714ef4b96298f2be6b3df69e6b1be6d360a519304964fc9f24927c8876b8e8 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.9.1.tgz + version: 2.9.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-08-22T10:44:22.28279716Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: c4aec4c9c2085c5dc0cc6854c135d8516ba0b567c2951fc40df43a6671c1fbfa + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.9.0.tgz + version: 2.9.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-08T10:50:54.854123258Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 0a5edf08f05469db483725192399a54f1ab41f58dda84962d8f5f4e9180d96a6 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.8.0.tgz + version: 2.8.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.0 + created: "2023-07-04T09:10:44.096302987Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 64fb3a16f648a52e9923759571452836b0906dedfd6e65e4949e3bdd7bddfbdc + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.6.0.tgz + version: 2.6.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2023-06-30T07:26:44.437454351Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 92b54280bae6cd163eacd10a6d7ed5311bdf9f8e9658a12c521011288beb2056 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.5.0.tgz + version: 2.5.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.0 + created: "2023-05-18T13:46:35.315627431Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: f135d7f88f3b26baf6db1f1f46a2015fa193da308b6172b7f243f3433e8b2275 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.4.0.tgz + version: 2.4.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.0 + created: "2023-05-12T12:24:07.883651476Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 56afe09f948301c70408c39ae43d6c93a129abedd6f76fb1207b4ae629edc295 + home: https://bitnami.com + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.3.0.tgz + version: 2.3.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.5 + created: "2023-05-02T10:09:51.084861307Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 413852327735ecd39da073b18ada6354d7368edbe949af7c37f8deb58c255c62 + home: https://github.com/bitnami/charts/tree/main/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.2.5.tgz + version: 2.2.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.4 + created: "2023-03-07T10:21:22.72426285Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:91e4aedf71c0ff91867da09a1ce2290d883eac1548f7a73f271bacbca336550d + home: https://github.com/bitnami/charts/tree/main/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.2.4.tgz + version: 2.2.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.3 + created: "2023-02-07T15:47:55.793464896Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:8cebf07c52fe0feb9ca659f87fc7952362cabdb1d76402d7806a7315a24e84cd + home: https://github.com/bitnami/charts/tree/main/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.2.3.tgz + version: 2.2.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.2.2 + created: "2022-12-12T10:30:42.51831239Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:d589f61a6529a986b5294bb76843431b8b0ab5816d3876d0b0fd631b8cc55ebe + home: https://github.com/bitnami/charts/tree/main/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.2.2.tgz + version: 2.2.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.2.1 + created: "2022-11-25T10:44:29.746894053Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:b19071d9c9e198d138e43c73fe3493831f9a42458dcf62f8971f49a344b4ca25 + home: https://github.com/bitnami/charts/tree/main/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.2.0 + created: "2022-11-15T16:33:47.287526075Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:83522c35f69b7a9d625d6b2abb36256509fb6b056cfa7f14ccd2952ff0e79649 + home: https://github.com/bitnami/charts/tree/main/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.1.2 + created: "2022-10-31T16:29:31.38259977Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:c34eb75b703a3b06b89b04c6cdcca4fff1302e1b1d12969408cd2c8069741010 + home: https://github.com/bitnami/charts/tree/main/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.1.1 + created: "2022-10-28T08:25:05.184871936Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:b7ee7c4e363e2c52045f379a1963a5c04b5df87f0eb0edf3c8237fba899bf2d5 + home: https://github.com/bitnami/charts/tree/main/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.0.4 + created: "2022-10-24T14:32:49.433672431Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:164594ce1913f53d99bdc1d85eccb69db716228052ad8ed5551a00b417878795 + home: https://github.com/bitnami/charts/tree/main/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.0.4.tgz + version: 2.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.0.3 + created: "2022-09-12T12:35:43.265104286Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:2f9b99da434116ba862756e378b90d60bf6ad4c3a7cdff16eadd4d3686d9879c + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.0.3.tgz + version: 2.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.0.2 + created: "2022-09-05T11:25:35.282959688Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:c8dec157e77cc631276ca68df804a968db59cb38c0b0eb50a71e6613000652d3 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.0.2.tgz + version: 2.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.0.1 + created: "2022-08-23T21:14:35.325546416Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:664c2f058f5730bd32130309e96a0879c553e23963d475ce68d514602b82ab21 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.0.0 + created: "2022-08-18T12:03:39.57560419Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:d8724dfa5a5585d6cc42cb656c3b93c0bb2411e94fb2a11f067ff2cb5084fe9b + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.17.1 + created: "2022-08-18T10:36:43.123189246Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:2a623d42475796af0ff0d18bbfa3b76ead1ccd7efab8280ea079b6a53f5ac627 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.17.1.tgz + version: 1.17.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.17.0 + created: "2022-08-18T07:06:28.408056976Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:3ad9bc55081cca70ce275ed3d579e13de07cc45ed12a5e66800a96ef50f9fd20 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.17.0.tgz + version: 1.17.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.16.0 + created: "2022-07-14T17:14:12.421862423Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:8aa21b5bafcd74810aca6c1de3892e4e4e84582a87c8e623c6a6e248ee0da037 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.16.1.tgz + version: 1.16.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.16.0 + created: "2022-06-03T14:26:06.328357199Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:612ba0ee47eecb204499b7021508c8ebff38d8b50899be717de3e44e7aa78aec + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.16.0.tgz + version: 1.16.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-06-02T20:43:28.419235182Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:412afa5097f6099397925a97e11bca8042f97f4f84683a5f7f4a684bfbed742b + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.15.2.tgz + version: 1.15.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-06-01T20:46:46.320899192Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:7b408658d3c093aabf5bd9545e9c072a9b0e8594d64eb008b8f5d229fec13c02 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.15.1.tgz + version: 1.15.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.14.2 + created: "2022-06-01T02:20:38.636626697Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:8760bff45b8763f660a07221b27b3c37c41e2360bda05b6dfcbf7c36c557a7ed + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.14.2.tgz + version: 1.14.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.13.1 + created: "2022-05-20T15:32:40.107594375Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:330a278e01fc3f3d4b9a90a8614b1a5ddda007de10bb4ee650710991af415f27 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.14.1.tgz + version: 1.14.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.13.1 + created: "2022-05-13T12:53:12.091619027Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: sha256:4648f7ab42b17a0368549351a991b9bf22c3848c72b0eff4e8273236bc57e25b + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.14.0.tgz + version: 1.14.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.13.1 + created: "2022-04-25T15:57:31.777233Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: e614e4799be726f265faeb19af43ece886d6312a5d28fe180c3c9c9db4e208ee + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.13.1.tgz + version: 1.13.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.13.0 + created: "2022-03-24T20:21:21.283900785Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 360f82fc64d68a0c7a5ab2905b036fdb47168d4bc1e0d994478bceac7cfcbeb4 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.13.0.tgz + version: 1.13.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.12.0 + created: "2022-03-16T14:24:47.893518855Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 3355fa44a1d4f2e920490d345e0085927ab7a2f8a58297d53428234e8f7d22a6 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.12.0.tgz + version: 1.12.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.11.3 + created: "2022-03-03T08:19:58.96280898Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 9bc6ca7fb45f3a88e09623669e2ecc89b52a7793f40092cd5472ce10758c5504 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.11.3.tgz + version: 1.11.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.11.2 + created: "2022-02-28T14:19:32.352075624Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 637e70b92fa1fbc33c4ca7f05b7c0fee30dd656f4d6a9fa729cd1ec77df0df13 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.11.2.tgz + version: 1.11.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.11.1 + created: "2022-02-02T08:27:14.539167549Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: c97e137eb1180ed35da522293ce01b322d037c030131507b40391ca394321db6 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.11.1.tgz + version: 1.11.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.11.0 + created: "2022-02-01T16:56:44.803786691Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: 50acf7027d45109e64e8c1cefae4e9e4ce575920bdb7585a5a69f69c54b58959 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.11.0.tgz + version: 1.11.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.10.0 + created: "2022-01-20T14:20:07.691256555Z" + description: A Library Helm Chart for grouping common logic between bitnami charts. + This chart is not deployable by itself. + digest: d212476d58c8d5601085e3f2ffa281424a4181cc6bb01107778bf8296a435cd2 + home: https://github.com/bitnami/charts/tree/master/bitnami/common + icon: https://bitnami.com/downloads/logos/bitnami-mark.png + keywords: + - common + - helper + - template + - function + - bitnami + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: common + sources: + - https://github.com/bitnami/charts + - https://www.bitnami.com/ + type: library + urls: + - https://charts.bitnami.com/bitnami/common-1.10.4.tgz + version: 1.10.4 + concourse: + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-07-25T10:30:56.266177244Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 7c442ad74380db8ed753d6be4d8ae842caf67199914189b0b49c80783b528478 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.11.tgz + version: 4.2.11 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-07-24T20:33:13.550906629Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 830c75decd02368d3fdb58e40f5c3e3adadc3f28008942aa0c9d2cde9e39bec5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.10.tgz + version: 4.2.10 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-07-16T11:40:55.644681597Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 322417b650ba2c5088a1f04b7aa57805f7a04695fd274ddeffe2503e2e049c70 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.9.tgz + version: 4.2.9 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-07-03T08:04:08.681994729Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: c89fccda7e59a2649a8d4f0dac3e0a897681e35ce1293df4964628368c2dfbed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.8.tgz + version: 4.2.8 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-06-18T13:35:59.326594156Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 1f3a6d4723bb8b97eb8e533d187e4f0da2844839def82693a28bc16535628ba5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.7.tgz + version: 4.2.7 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-06-17T14:04:34.500284349Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 91a9f474e8d1f1ff93f11eefbb636ef474ac1e4f4ad86a2fe30f326fa227f107 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.6.tgz + version: 4.2.6 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-06-06T15:25:32.519279186Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 38898ef35b07b352fbe78604b779501ec1c83adc4862c1f07e643b91e8b08405 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.5.tgz + version: 4.2.5 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-06-06T13:29:07.396602173Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 860da4801d8df45ce1d7232f349071e5d45455dc574bab21d545baa9095afe76 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.4.tgz + version: 4.2.4 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-06-05T14:17:35.342443552Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 0090b36e460644c140fc720608b97000a66eab5bbb97996bb49475606dd8a560 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.3.tgz + version: 4.2.3 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-05-23T08:53:21.799693814Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: d17e8657f38d5a6cb05b01b2056f292609e5ed347d72eda614755b77398ed7dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.1.tgz + version: 4.2.1 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-05-21T14:21:13.736216478Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: d0b8bad19cb9b07b480cb4962a5f5c570b0c80e677aa28153e99a40705398fc3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.2.0.tgz + version: 4.2.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-05-20T09:49:33.922919879Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: bf57c26dce0f812d37677e630300a683a2e41da3f743b32c43d144c92b2f35e9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.1.0.tgz + version: 4.1.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-05-18T03:50:31.425796999Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 72da78a4319c94fb2217dc7e39ac04b442d5c732cbb9b543535f6c298f19ccfa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.0.2.tgz + version: 4.0.2 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-04-21T15:23:03.046777707Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 4f8238bf08d7d6bd576e3cc168b37e2ae5fc711935d3dd61af5c8012190f1370 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.0.1.tgz + version: 4.0.1 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-04-01T11:17:38.987895802Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: d0fee4e77d887bd3898ed87c9255fa8814873ba913eaee0538fd8173a785484e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-4.0.0.tgz + version: 4.0.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-03-12T15:36:42.85584242Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 1afe214be670b57521ee4d1674fa28e1efe0cecae2a681b0a6909c2eccfbab42 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.7.3.tgz + version: 3.7.3 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-03-11T20:28:46.90141757Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 0f1b984903da17a3fb3a5b3a318fea00d588d7707d8e23ac05986e86690dc57c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.7.2.tgz + version: 3.7.2 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-03-06T14:26:30.085154237Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 3c12f3065176607f424ebc83bf94448f6f29853127fc906d5aab3897ef4f6875 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.7.1.tgz + version: 3.7.1 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-03-06T10:49:26.808231774Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: e847aed1dfc1a29c7a2cbb407916978956975ab355d89503700c9e8fb31bd744 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.7.0.tgz + version: 3.7.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-02-27T12:54:59.306437492Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: eda73b3e52b5f46e4739500825223eaff283189b0a0b027e301d7221c2a088d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.6.0.tgz + version: 3.6.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-02-27T05:30:09.542919199Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: ed8098ff58b5981e10b12dac9027be0ea0ae6b750963d22893dabfe7deda5024 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.5.3.tgz + version: 3.5.3 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-02-21T18:15:50.882864865Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 37b261741ec9989688ae9b3d17c52d4fdedba3444f13da546cdedba789d20e67 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.5.2.tgz + version: 3.5.2 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-02-21T12:36:55.60188283Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: d208fdf99f14e0786d01deede1116a9eaaa6606bb10583ed8eacef1c0715bfae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.5.1.tgz + version: 3.5.1 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-02-08T14:50:36.168834246Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: ec996c3473782743a135691af7795ae3d45196f53af153feb19bcdbf411231ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.4.0.tgz + version: 3.4.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.2 + created: "2024-02-08T08:40:08.102582792Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 0137d3695b4436dc5e86e7ff85f7bf63a48db92fccf810f4d22c10b53908bb2f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.3.9.tgz + version: 3.3.9 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.1-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.1 + created: "2024-02-07T14:45:32.486121598Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: b0c7164287c6f9c2c83ef99ac76d2ee53cbcafbfe0ffe862678cc038b92b527b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.3.8.tgz + version: 3.3.8 + - annotations: + category: Infrastructure + images: | + - o + - s + - '-' + - s + - h + - e + - l + - l + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.1 + created: "2024-02-07T11:02:04.980858516Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 919c59a5811657367375672a1b2e734b2c3bd489e5c79cd7412171a079e608e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.3.7.tgz + version: 3.3.7 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.1-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.1 + created: "2024-02-03T08:11:25.993787134Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 2859f71b198ffdc8358051ac2a53be6c17282ebf83b61a25b2685de7a43ed9c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.3.6.tgz + version: 3.3.6 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.1 + created: "2024-02-02T10:53:45.786086935Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 8d1df9c3892bb8cf01702f0789404881ff11c789465a3b6b8fed51fe0476f7df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.3.5.tgz + version: 3.3.5 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.1 + created: "2024-01-30T10:43:14.571089702Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 6e50d0294f15bfe099da52581e87323a368b7ee6673f7da9fa6b92822054f350 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.3.4.tgz + version: 3.3.4 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.1 + created: "2024-01-27T16:43:32.055812027Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 05cef07b6588de72ec82982b008a3c02bed545b1a17e2329291e49263578c160 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.3.3.tgz + version: 3.3.3 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.1 + created: "2024-01-26T23:14:25.484715101Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: f788e1fa306d65b41b85230e99fa4781d840199852a50c7d3f4c08a2a6c8aae7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.3.2.tgz + version: 3.3.2 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2024-01-22T11:21:21.634641967Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: b1518e10dc1505b998c2f0a328d03afa27cd3648d1c1a73f31e54b11a9cd2572 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.3.0.tgz + version: 3.3.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2024-01-18T12:41:39.719963248Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: c29101c9cfa596ceb2046a8ff06b6dc6f09d8afe942ee074bf1f212679390f4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.2.1.tgz + version: 3.2.1 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2024-01-16T11:17:51.971219473Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 0b4806b2a0b3ade92729c08bf7103532c1cdeec3266063d64745c4855652033a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.2.0.tgz + version: 3.2.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2024-01-13T02:31:45.01179194Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 204a1f59b8678b9a8eafd2ccb0f2d0a70a88844fbedba008c3faeca1fd3a7652 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.1.1.tgz + version: 3.1.1 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2024-01-10T11:29:15.69950659Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 292f95d48c60f080c552a1c5348e3188d62b2ea679eccbb19d2e1d2377480d18 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.1.0.tgz + version: 3.1.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2024-01-10T04:27:16.920274046Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 43f2b62efa99204582b4c55ae94d2c5861d62550fc5dc8e02216b3155f4075cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.16.tgz + version: 3.0.16 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2024-01-02T06:00:00.322108451Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 9c711a58e8ea3be82b4040b5a98898fe2f6acd24d8f59a0de798c53912b1ee45 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.15.tgz + version: 3.0.15 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-12-15T19:28:03.131493943Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 1088f38508eb2f567308e92180dc0c4763adacbddc64037c1d80d23440c2fe6d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.14.tgz + version: 3.0.14 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-12-12T16:19:13.516596137Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 2dd9b77ab72925f08686fa491824d5aab4f9ad89d7b84963b563079f7092e070 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.13.tgz + version: 3.0.13 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-11-30T04:14:30.21111604Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 6c4cfab4c6e4cd362fdf89fa4f339c9db137a25df1c80fb24440a17b5e3732a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.12.tgz + version: 3.0.12 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-11-27T20:42:05.041838731Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 63ad9a7fba5c676583a1560f9281ced3248e651eb6790812e643253fd89ffa4d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.11.tgz + version: 3.0.11 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-11-21T20:23:42.635325868Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 2a8bd1fdace678a8e465aebc8c1f7fa8dae5aa68c652dc56086d553772ab1f87 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.10.tgz + version: 3.0.10 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-11-16T14:58:35.379363388Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: abe911de3c9752418438f7e2c987f3e87c35007a4c960d6724930e2f3a0ed499 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.9.tgz + version: 3.0.9 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.11.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-11-09T09:45:36.930092206Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 7f21a076e7f51b6b27f67a7a17513a360cf4ab4ea53b784a2ef7d2c78fe0c1c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.8.tgz + version: 3.0.8 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r62 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-11-09T08:53:50.722366843Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: bc28971d02881e171a7b7800785e0ada33890bbdb318487ce98762e31a9d45e9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.7.tgz + version: 3.0.7 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r62 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-10-15T10:35:12.428813803Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 361f54b8cccca5fcc1d63698616aae13127b1fdcc9835d986b2a353fca104095 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.6.tgz + version: 3.0.6 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r55 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-10-03T18:42:28.492843601Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: d99738e1cba813ce3b5d329f4d7d386e872b06a67d82d34e20a8d6dce427e243 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.3.tgz + version: 3.0.3 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r52 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r83 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-10-03T08:01:59.516693571Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: ef6ee959ada3de47439d1cc7690736da8f48eb03ecc420027e8f222143ef1bfd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.2.tgz + version: 3.0.2 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r52 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r83 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-09-29T21:26:04.440252936Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 7745eb8b7c830b2d2315f52d0944e585fba3d97a2c4829919d11ccf08d5a129e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.1.tgz + version: 3.0.1 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-09-29T11:25:43.151641392Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: f70022424376d129010ebf759356d0c172218f778f407eda7fea7ef15f51afd2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-3.0.0.tgz + version: 3.0.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-09-26T15:32:05.834802956Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 3d79827f65d9c7ddfe6ae4bbf7ff8fdc4b6f7bb8de484dfe7a5b4d311bef24ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.3.8.tgz + version: 2.3.8 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r42 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-09-19T08:12:20.916943838Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 439992c465b9ae22499675dee22569aeec692a035331b9585a1dea5692098f70 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.3.7.tgz + version: 2.3.7 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r40 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r69 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-09-17T17:32:59.692825363Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: b1d19bdd1a1beb18b7c51b876f132e3398cf038d7df5f25d4aad44cee9f522ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.3.6.tgz + version: 2.3.6 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r32 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-09-08T13:49:12.877565661Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 428684198c186e5b13f2dc3e5cd25ca1b6c990f32ac7ca962e90f1d648b32ed8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.3.5.tgz + version: 2.3.5 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r21 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-09-06T06:09:58.090346555Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 5587719638e91f42de4d4f2715856d3421e424d8ef6c9d2000dc3cef143954ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.3.4.tgz + version: 2.3.4 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r21 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-08-28T21:22:14.160264936Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 20c61c50b95b1e46af433ecf9bc491019770e1d11996cf5f77dbee0389cae75b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.3.3.tgz + version: 2.3.3 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-08-26T00:33:04.549985196Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: cf3f689eb44dc2bb1918776f575483f7e98267a4e64a44bb12db7fa8ef1cd118 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.3.2.tgz + version: 2.3.2 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-08-24T23:08:24.789089822Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: a1b7fabda8919eb5496d3c7b15dec3bb5c3b33141496a05e08b95f53748dbfa6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.3.1.tgz + version: 2.3.1 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-08-23T11:54:26.977522298Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 9284e4948db9652a24e967086a2423f106566e01ab3d1797bea2573f4a6c4926 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.3.0.tgz + version: 2.3.0 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-08-19T12:02:27.44151713Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: a725a02dc72fd8db56d690003ff76d23508d3c31393edc51919a8fd4c30252e9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.12.tgz + version: 2.2.12 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-08-17T15:36:37.45937028Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 508213d8ba28953e996f2d688d89c2ffeb07027915cfec9d33a2dd0f00ccec6e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.11.tgz + version: 2.2.11 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-08-11T07:00:54.75483486Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: b2b436f35c0274c61b7ace6d828fffd662a4a9307c0eb445564329268efc9c78 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.10.tgz + version: 2.2.10 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-08-11T04:11:00.239664015Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: ee4ffa814161da57f6e1615f964756be24ffb9b83c4856653433c1b3f321a3db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.9.tgz + version: 2.2.9 + - annotations: + category: Infrastructure + images: | + - name: concourse + image: docker.io/bitnami/concourse:7.10.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.10.0 + created: "2023-08-10T03:55:26.353127186Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 9435b66b65374bbb6821e4c2891f2e3c4d8ce16d866256328115c73f0279608b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.8.tgz + version: 2.2.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-07-28T00:36:57.302834621Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 94d848e7582d90cb0cbf3373b42079971cdc7be27ccc4b2898b8866ccc87c6b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.7.tgz + version: 2.2.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-07-26T17:01:10.102603986Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: b6eb5267d7eaa7db50bfc080e029401e4824774476bc1112ca66c1b9c3543286 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.6.tgz + version: 2.2.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-07-26T07:20:43.508311187Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: aebd4dc4145dc11354e168eaad255de1e00aed844b3a7f75a942978cd80b475f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.5.tgz + version: 2.2.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-07-15T09:26:53.835945353Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 687532c57aef8a3b7028165976cc13397f1670c9239ad89c9897275768482ba6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.4.tgz + version: 2.2.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-07-06T07:16:47.989161792Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 2cef80889d431e792e9add47458498a3f61310d5c747cbea7f1f2434aec87248 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.3.tgz + version: 2.2.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-06-21T10:57:03.688862827Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 8fb565d7d327f90f6b9777f5885910c76d4fa23dc837088506de29d7f4af7c3d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.2.tgz + version: 2.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-05-22T07:27:17.547320926Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 5da9a445c27e59c0cc3cb3c18d6c743c21d4e8a04d508ea1551d3fb3a79daafd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-05-09T15:33:05.332494816Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: e349787eb52f02fb84812eb47b6b43bdb770a04b995dde16cb933c4fbaadbad1 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-04-29T15:06:58.535483087Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 67e8078ba1edd3f22bccacbcf3f7dbcf04b8cd7fe8cbe15fa8f8f2a877bff301 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-04-01T12:59:25.095760703Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 7ff8c64a7a843146c1dd73b7ab5d653ef6f579d1c55f263612098523191518c2 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.0.7.tgz + version: 2.0.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-03-18T23:33:18.493214454Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 875e944f567c73c9f5552195d53f77de776a00b292b21cf3a63d23f2102c6b6c + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.0.6.tgz + version: 2.0.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-03-01T10:04:00.884279721Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 3d92b26c153e5e7328eea8072a2dff43ee26b4e64806897b8960736e79590380 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.0.5.tgz + version: 2.0.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.1 + created: "2023-02-18T15:13:14.280035435Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 006e54cf1ba71ad7aa359815d9948ffaca8de7dbaf3f61a191ce32a99ec94e67 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.0.4.tgz + version: 2.0.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.9.0 + created: "2023-02-09T17:39:05.097329207Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 8ae459f1258829176a5543e179ecc962a555444fb3e7e81513f196f92c9d29b0 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.0.3.tgz + version: 2.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.8.3 + created: "2023-02-02T08:36:51.646104974Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: ae9eb1e4fdf96a72cf7bdf616079777b57f3745d6a5c3fc33725ecdee0ead280 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.0.2.tgz + version: 2.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.3 + created: "2022-11-12T08:02:18.605397622Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 347d002ed855fe8b34a1962d19380b6917503436149d46a0eec7dc03ef0aea50 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.3 + created: "2022-10-28T10:51:12.407188523Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 49bf19ccf5e0a10b69dff85ccd1261a2b0749cdb4ee8c1f762ff3691ed35be04 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.3 + created: "2022-10-13T07:35:56.875238927Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 07d334c740b5e592697976d34605bd8cc424446f85ed6a4a07a5c1af870cccd1 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.5.3.tgz + version: 1.5.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-09-30T12:27:35.51939548Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: 5423c37daa0f983ec81b82cc9b7907f26fabf2324ed7562db7aafc4a9790f506 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.5.2.tgz + version: 1.5.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-09-23T14:21:06.600243608Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: aea34c537674be164a3cfd8ab1397697ea836c82028c67dbc18b8264ded700ad + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.5.0.tgz + version: 1.5.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-09-21T11:04:49.801645224Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:c0860e24a663ab8d0dad52384f028c17c7a1c2e53b92f5d3aa87632ea4f2d5ca + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.4.3.tgz + version: 1.4.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-08-30T05:24:40.044039336Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:d1218a7de749770387f57049f4befa77aad3c31c364a447f35d4525d87447cd3 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.4.2.tgz + version: 1.4.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-08-24T01:14:53.795364125Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:9ac818c4c0ae92202c73a875ec70fd5bb3cc71efc287df372af5e00b78b53fe8 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.4.1.tgz + version: 1.4.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-08-22T16:44:39.008556011Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:8f2558fc3fca3eb2f1c7d3f21a3aede7eb73c2cf0ad861836b8beab1b6a1fe19 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.4.0.tgz + version: 1.4.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-08-08T08:36:49.562491258Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:91caf8b9e46cd3d777dfc22594ad9d5831400953e0266fe3f9a211bf25c3151e + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.3.12.tgz + version: 1.3.12 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-08-04T23:08:31.039551118Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:d4b97f2ec4cceaf69a5731a8e5ccfd238eb212d6a419a1906ca02ba748f06f32 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.3.11.tgz + version: 1.3.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-08-04T09:03:51.785258631Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:9b7f6ee3e0750733380401d69b4e6b0c8fd74436dc7940d9826cddc08e5643b9 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.3.10.tgz + version: 1.3.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-08-02T08:54:40.013670614Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:dd5202c15e3529d171d4d8c90b6a2f0cd2863176c2e3d489bfea04bba84bf027 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.3.9.tgz + version: 1.3.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.2 + created: "2022-07-16T20:04:32.704542374Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:4e07e7a9a71c158722faf833f7087dd0ccf9d967b956db1cc5cb26b1c61163fd + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/bitnami-docker-concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.3.8.tgz + version: 1.3.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.1 + created: "2022-07-01T10:03:08.216341798Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:4bfe2010a3074c528eca3d197aff594729954b129235ba7b82ca203909de416a + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/bitnami-docker-concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.3.7.tgz + version: 1.3.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.1 + created: "2022-06-15T01:20:36.59699103Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:c926016f702cfc177b646117ca4fb7aa5dcc69d9107696c065cb39974f1b2849 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/bitnami-docker-concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.3.6.tgz + version: 1.3.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.0 + created: "2022-06-10T15:41:55.193581484Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:a8fb455056fa84d27f5aa8a4aa2ae0dd1a61bb5b8d4dcec3a18c0a358563a68b + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/bitnami-docker-concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.3.5.tgz + version: 1.3.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.8.0 + created: "2022-06-08T10:46:52.794740308Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:f17bd08c985ecdc3560bf11953d8755990c603a765b027bb534af068b1030a32 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/bitnami-docker-concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.3.4.tgz + version: 1.3.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 7.7.1 + created: "2022-06-03T03:21:23.115191975Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Concourse is an automation system written in Go. It is most commonly + used for CI/CD, and is built to scale to any kind of automation pipeline, from + simple to complex. + digest: sha256:2fc1b18f4a12aa50ef223731c5903c4e09e2161c3f8f65f4dcfdde87635b7644 + home: https://github.com/concourse/concourse + icon: https://bitnami.com/assets/stacks/concourse/img/concourse-stack-220x234.png + keywords: + - concourse + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: concourse + sources: + - https://github.com/bitnami/bitnami-docker-concourse + - https://github.com/concourse/concourse + urls: + - https://charts.bitnami.com/bitnami/concourse-1.3.2.tgz + version: 1.3.2 + consul: + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.1-debian-12-r5 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-08-07T16:37:27.044216474Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 6b797ce8ed5102ee7f4e20967657517ece5389292e7bec064c0037601d5d7f16 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.12.tgz + version: 11.3.12 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.1-debian-12-r4 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-07-25T04:26:40.222940289Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: abc70417a51791f8665ba422e2c581a07d1a580f077a3772842d1d658d36b25b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.11.tgz + version: 11.3.11 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.1-debian-12-r3 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-07-24T04:33:29.484643Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: d76238d2c592be829c6f5e25d449b5b29c9045ce39597b69c6e7857b5fa4e206 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.10.tgz + version: 11.3.10 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.1-debian-12-r2 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-07-23T22:26:32.990010906Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 7bcac5854317a1b12e9c42b9bb0aa3626e0e9678ecfe478a451cc88ecb3baffd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.9.tgz + version: 11.3.9 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.1-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-07-16T11:40:44.185698561Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: f6c263bb5212803c413b450913965132913e3ac23f67792d70a43e339aa7b6d2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.8.tgz + version: 11.3.8 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.1-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-07-13T10:18:00.993166958Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 5ae5f89fe824ad0019503a282fed1cc339e462f111413695d864ceb21d6c3c15 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.7.tgz + version: 11.3.7 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.0-debian-12-r3 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-07-04T18:11:40.366170901Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: fde1c941f8b16dcd8eab38d930719043c6bdd24d98b443585054c56f9913ace1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.6.tgz + version: 11.3.6 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.0-debian-12-r2 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-07-02T23:31:41.442994Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 50e86c39ff1fe75ad6d05db12af9b99423842e7a10686a23f52211875c00d604 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.5.tgz + version: 11.3.5 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.0-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-06-18T11:38:06.242200511Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 9e543c6955d9dbcfb5936eb1c2d1b6e6bb633e3a67fac6f0936933fe645de3f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.4.tgz + version: 11.3.4 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.0-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-06-17T12:18:29.391727596Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 8acd08d66a5afef499b67551f399ef04c8db8231d26c37f7b5959cb316397b90 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.3.tgz + version: 11.3.3 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.19.0-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-06-14T10:36:07.11077514Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 8175d397bc9c01fe012b0505edcb270514c9f7f51978b3e35fc6b9238b267b23 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.2.tgz + version: 11.3.2 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.2-debian-12-r1 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.2 + created: "2024-06-06T15:39:39.259470223Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 97e71658b15a40e6433108af131274cfbcdc898e0de2d5cd719db358e147c4a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.1.tgz + version: 11.3.1 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.2-debian-12-r1 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.2 + created: "2024-06-06T06:59:14.511501867Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 6975df841d97779507f808575512408a5ed5f75b633de3db45729063d04ffe22 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.3.0.tgz + version: 11.3.0 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.2-debian-12-r1 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.2 + created: "2024-06-05T00:54:08.309973013Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 7357e480af5b5fff5973017f16b8680ef886596dbb2aa81d97e36629a8562290 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.2.2.tgz + version: 11.2.2 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.2-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.2 + created: "2024-06-04T09:43:18.642887785Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 0ca9de1632ed8e2a940d255bf057212ce4cc238afd55f99223829a02733963dc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.2.1.tgz + version: 11.2.1 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.2-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.2 + created: "2024-05-21T14:21:30.909476458Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: b6da21e562350cd47bda46dcd0cf67cd6e6ed32f984b9633969f6fc35acba0ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.2.0.tgz + version: 11.2.0 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.2-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.2 + created: "2024-05-19T23:28:38.354431566Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 4c9dcbcaf10e9b9c7896b9a322047e6e045bf9186441846caa2746242e190ff9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.1.9.tgz + version: 11.1.9 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r13 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-05-18T03:51:08.949516594Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: b587713adeafc6be85644546df691258cf1326acae9a7b3e6124b4b3561935b8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.1.8.tgz + version: 11.1.8 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r13 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-05-13T20:25:15.45785469Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: bd49ecddb486772bcbf91d674fd7da561e272fef9cfbda32fd71be2f11af487e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.1.7.tgz + version: 11.1.7 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r12 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-05-07T23:43:01.351978016Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 9cfd49b1aeac726a77c8d9da63492ebbad8d989ed0fa8832bf52706cf625bcef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.1.6.tgz + version: 11.1.6 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r11 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-05-07T23:04:56.861865786Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 91b0520f76723ba8abcaf02e5c49ae5fbac27918bfecadc877f0a8d29e1679d5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.1.5.tgz + version: 11.1.5 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r8 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.12.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-04-24T09:56:15.136447209Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 12f9a273be0c5461487542a96d9eed4965f1f4bd6ea86563e12e652010ce06f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.1.4.tgz + version: 11.1.4 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r4 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-04-23T12:21:24.49634648Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 580fe58d3a2a563ac02cd60694b64930cb05c16ce9e3d05500bf932381e9ffa4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.1.3.tgz + version: 11.1.3 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r4 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-04-16T06:59:02.008029508Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 9cc06f48c058cc2ceaac2aa82ab1ead7710b98736f40cbf19564aff243775d9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.1.1.tgz + version: 11.1.1 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r4 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-04-10T08:13:58.347775149Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 9e82b2dfa0edff35285e31a7cabf141f46458f94381e338b0fbbab1f00c36dba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.1.0.tgz + version: 11.1.0 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r4 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-04-09T08:11:57.038522465Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 0b7dcd034236a9761df2dd4e9d294a481dccb82b466c749a1ddb88a404b9ebce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.0.4.tgz + version: 11.0.4 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r4 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-04-05T23:28:53.70792176Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 184ea56deefbeb29e660e1bdf8e3eda722714d74409e1d692c0723bdc410fa02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.0.3.tgz + version: 11.0.3 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r2 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-04-04T13:38:33.310088525Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 3e132f5b8014e32298877fd35b25b5c309f8995cff1d677872dc1adb3f4a3656 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.0.2.tgz + version: 11.0.2 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.1-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-03-27T02:26:07.170400861Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: abda27676700334df4ead746d2e6752ca197f07c3c25111b02e0c22cbb1ac5c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.0.1.tgz + version: 11.0.1 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.0-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2024-03-12T10:26:31.336070111Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: b462fa284beb2f4770206f3d1fed7cdffa58bc134648527bbbb22f567ec56338 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-11.0.0.tgz + version: 11.0.0 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.18.0-debian-12-r0 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2024-03-06T14:28:50.444741244Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 25cfafd7e8722cdc6d6174eb00022f4e45895491999e6d5bde1a04610ec07c9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.21.1.tgz + version: 10.21.1 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.17.3-debian-12-r2 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.3 + created: "2024-03-06T10:51:41.231821619Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: dadda86bf6b2326a879b7384f368ab42745b31a49be153373744ba0b68b5a5fd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.21.0.tgz + version: 10.21.0 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.17.3-debian-12-r2 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.3 + created: "2024-02-26T08:53:28.574617364Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 2b674c3f899d4af2b945e1c2a79c57400a84d142871b222a7cbacfed2aa24156 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.20.0.tgz + version: 10.20.0 + - annotations: + category: DeveloperTools + images: | + - name: consul + image: docker.io/bitnami/consul:1.17.3-debian-12-r2 + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.3 + created: "2024-02-22T09:30:45.587436247Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: da301fa53cde5c4ab72105f563a0fcedd8ae4891fdbd345a695ace80305b58d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.19.1.tgz + version: 10.19.1 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r16 + - name: consul + image: docker.io/bitnami/consul:1.17.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r105 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.3 + created: "2024-02-15T12:24:42.883954374Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 25e28224663b18bbab6f31c3033fad517682f010e45bef9dd528714f364ce0a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.18.0.tgz + version: 10.18.0 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r16 + - name: consul + image: docker.io/bitnami/consul:1.17.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r105 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.3 + created: "2024-02-14T02:53:08.301844942Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 312a18d426e1c21a9d014ae61daf9a70fbc219d4a840fbb904604067fd1f733f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.17.1.tgz + version: 10.17.1 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r6 + - name: consul + image: docker.io/bitnami/consul:1.17.2-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.2 + created: "2024-02-08T11:56:26.348120392Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 521475828f8b0274848609b8cd21f7acddd82a8901c22005acc6a3412c3d6629 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.17.0.tgz + version: 10.17.0 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r6 + - name: consul + image: docker.io/bitnami/consul:1.17.2-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.2 + created: "2024-02-07T14:51:49.986428789Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 2f71479224474111f9d0531f03f557c0bc7e4a9b183ed4f70509ff23e258202f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.16.5.tgz + version: 10.16.5 + - annotations: + category: DeveloperTools + images: | + - c + - o + - n + - s + - u + - l + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.2 + created: "2024-02-07T11:12:04.305064189Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: f0d618196d3b2c1f965679bd5e52a3ef18fea768e4efd8f83a63916f13d75c05 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.16.4.tgz + version: 10.16.4 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r5 + - name: consul + image: docker.io/bitnami/consul:1.17.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.2 + created: "2024-02-02T18:35:41.599221758Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 09536a523deca7c7b73e7e0dfe0d246b97750bcc06bf20669a2b394de6967c8a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.16.3.tgz + version: 10.16.3 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r4 + - name: consul + image: docker.io/bitnami/consul:1.17.2-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.2 + created: "2024-01-30T10:53:14.138942492Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 0f6b1797562706b5dd02a581ba7552f578bfbf8167fd26bb24e887e925d59f7b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.16.2.tgz + version: 10.16.2 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r2 + - name: consul + image: docker.io/bitnami/consul:1.17.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.2 + created: "2024-01-24T04:18:13.08294003Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 4a5dee8a32def0ea6424280d73c328dbc5a353961ee07d86fd0c4c3d421fa76c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.16.1.tgz + version: 10.16.1 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r1 + - name: consul + image: docker.io/bitnami/consul:1.17.1-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2024-01-22T15:44:52.421727872Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 42ac34609930b703195c88ee42bdacd6466582c86b1688562509fe6937a07c6e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.16.0.tgz + version: 10.16.0 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r1 + - name: consul + image: docker.io/bitnami/consul:1.17.1-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2024-01-18T14:17:10.02930477Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 582d9353db2ab369d448c150d688d348e2b4d2b0dd99deb9c16904dec8d5e5c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.15.1.tgz + version: 10.15.1 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r0 + - name: consul + image: docker.io/bitnami/consul:1.17.1-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2024-01-16T14:55:32.32365795Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: ea6364308e5399daa078b5b0740eb2cedc79dafc02b25df9c7c809cce7166977 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.15.0.tgz + version: 10.15.0 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r0 + - name: consul + image: docker.io/bitnami/consul:1.17.1-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2024-01-10T04:37:06.187987025Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 4412aa4918d937d1900a3937e05112bbffdbe66489634e82620d373b031cdbe5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.14.8.tgz + version: 10.14.8 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.11.0-debian-11-r0 + - name: consul + image: docker.io/bitnami/consul:1.17.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2024-01-03T12:25:49.165311851Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 732a1bea2e6039101c7b34826cf74f5207d9d91ecd39729b22eb48d44e3a3824 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.14.7.tgz + version: 10.14.7 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.10.0-debian-11-r0 + - name: consul + image: docker.io/bitnami/consul:1.17.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-12-28T12:03:36.69993319Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 97a73f715c6ff1c62bce4f5dfe80cdc432e53b1196af1be3408ce6c8ce2637ab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.14.6.tgz + version: 10.14.6 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r301 + - name: consul + image: docker.io/bitnami/consul:1.17.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2023-12-06T15:32:37.629338315Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 0c1cb6c23deb85cd987d76f37726e2c553ccdf09dbbbd125fcefa6d0a2b08a7f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.14.5.tgz + version: 10.14.5 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r300 + - name: consul + image: docker.io/bitnami/consul:1.17.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2023-11-21T18:15:06.455206771Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 223134a400edb280fb2d8749f7f478968986158f3a72071bf9cf59f2d7e2c715 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.14.4.tgz + version: 10.14.4 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r300 + - name: consul + image: docker.io/bitnami/consul:1.17.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2023-11-08T17:22:41.574154756Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 726d2e921fc1ea4c962e538014ffc545cc7e2a0f6a28708e73cd50d8b991dc91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.14.3.tgz + version: 10.14.3 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r299 + - name: consul + image: docker.io/bitnami/consul:1.17.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2023-11-08T16:28:46.423937408Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 80c9a7ca4565e4d0ea49674cfecdfa01bf2f2099d9639f46a2e5ce736491f55f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.14.2.tgz + version: 10.14.2 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r299 + - name: consul + image: docker.io/bitnami/consul:1.17.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2023-11-03T20:49:15.007863372Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 6fa2e2bb7aa69caa159a684ec3d4350f2e1c92f0af6e3341b7937a74c680a342 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.14.1.tgz + version: 10.14.1 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r299 + - name: consul + image: docker.io/bitnami/consul:1.16.2-debian-11-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-10-31T15:36:11.45371576Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 6d8d07697fdc5a607d3c639559912c078f5f46a859c3c5902c16c8f61578c8e9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.14.0.tgz + version: 10.14.0 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r299 + - name: consul + image: docker.io/bitnami/consul:1.16.2-debian-11-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-10-24T14:53:58.648628256Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: dbcc0b4b3e88d76fbed5e939fcfe14f2a5335a926b16dc6b9f509de206b45d2c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.10.tgz + version: 10.13.10 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r299 + - name: consul + image: docker.io/bitnami/consul:1.16.2-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-10-15T10:39:07.022875232Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 932326daab2102cda368a274deed3a0e957be56c95504264698d3e482c182347 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.9.tgz + version: 10.13.9 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r297 + - name: consul + image: docker.io/bitnami/consul:1.16.2-debian-11-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-10-09T23:20:56.218594674Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 5456508fa339b5f0b52c76f0208a46ec482851e615b20c2b4a81bcd29f29a0b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.8.tgz + version: 10.13.8 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r297 + - name: consul + image: docker.io/bitnami/consul:1.16.2-debian-11-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-10-09T18:58:26.197773867Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 447f9616735462c6d9617971f5252ec9c35d927d9db76f574a4582084a2a84c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.7.tgz + version: 10.13.7 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r295 + - name: consul + image: docker.io/bitnami/consul:1.16.2-debian-11-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-10-09T12:13:11.562330357Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 2a0dc5852c1567ce62e483cb971dd74b418e3ec9ec04a426ac731a4296e658b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.6.tgz + version: 10.13.6 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r295 + - name: consul + image: docker.io/bitnami/consul:1.16.2-debian-11-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-10-03T19:03:59.41564334Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 93f59c89e3a62bf63fb8cb2536700840f522c5d5814eddc6863667aba991a9ca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.5.tgz + version: 10.13.5 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r281 + - name: consul + image: docker.io/bitnami/consul:1.16.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-09-29T09:39:39.337355859Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 2142e4ad6537d9d52284ec6242d9e08c177ba1d9366a4f453e2e4da84daa72d9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.4.tgz + version: 10.13.4 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r278 + - name: consul + image: docker.io/bitnami/consul:1.16.1-debian-11-r36 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r69 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-09-18T13:32:37.272782587Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 031915390b8363852ac3d5ef69384554e0bdaaff7b04d3dd06b9b002c31aadc7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.3.tgz + version: 10.13.3 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r252 + - name: consul + image: docker.io/bitnami/consul:1.16.1-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-09-07T09:24:26.087810659Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 7a393ee68645a5795ed99eb29a18a6c1dab9329caf6a25c405ab7ba7f884f6b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.2.tgz + version: 10.13.2 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r252 + - name: consul + image: docker.io/bitnami/consul:1.16.1-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-08-28T14:28:03.120739303Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 3161a1f0d33a1edf68dabf5045d096cfaf17edd6619650d4082be09476eaf084 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.1.tgz + version: 10.13.1 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r252 + - name: consul + image: docker.io/bitnami/consul:1.16.1-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-08-22T14:49:16.89465758Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: e7a30443b527e2d5b52722bf0e0cb09a3c37b63a9207eb5a22ed66ff9a80d7d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.13.0.tgz + version: 10.13.0 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r252 + - name: consul + image: docker.io/bitnami/consul:1.16.1-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-08-19T12:46:24.184698831Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 6c3a842b0d1890df83a423364df6cb1ab4e56a0e8096961b20bb99f855a9dd47 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.12.10.tgz + version: 10.12.10 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r248 + - name: consul + image: docker.io/bitnami/consul:1.16.1-debian-11-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-08-17T13:19:19.898535956Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 4493defffdc842f4ccaceddd9c1a84a5f5b5e69095cf6c91d94ed72c75e7b5b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.12.9.tgz + version: 10.12.9 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r248 + - name: consul + image: docker.io/bitnami/consul:1.16.1-debian-11-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-08-16T20:12:53.039755853Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 5fd9d7b33f49744a7097e4f47dee7e702f1adb366039e418cc1ce752dbac9aaa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.12.8.tgz + version: 10.12.8 + - annotations: + category: DeveloperTools + images: | + - name: consul-exporter + image: docker.io/bitnami/consul-exporter:0.9.0-debian-11-r239 + - name: consul + image: docker.io/bitnami/consul:1.16.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-08-08T23:43:12.951198138Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 805b722f8d78658d8bed4ea73ec2c0f1c06572d70e8087a8341df857b4a46873 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.12.7.tgz + version: 10.12.7 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2023-07-25T11:13:32.582207772Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 2f65509e694e0934baf94d8feeeb78d4dd240275202c24360a3a51cd2a270725 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.12.6.tgz + version: 10.12.6 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2023-07-21T14:26:40.203568171Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: a2ea6ca40ba1e762948ed6c19a5117b8f1e670871e3627b767ae4de6918291e6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.12.5.tgz + version: 10.12.5 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2023-07-05T10:31:43.001742321Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: fbbd9ce6a59ef517242740e13dc45353ab56dff56f8d2a7392e41f885df192dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.12.4.tgz + version: 10.12.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.3 + created: "2023-06-20T07:13:04.359197666Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: abcad04bc0f3a4004bfd9f8feb40dab71a771dfcbf6e4b75df9463645c7998ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.12.3.tgz + version: 10.12.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.3 + created: "2023-06-02T02:13:11.003166369Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 2aea5c927a83b6dd5e408632c9efe2e73fdcf30ec29328a83b1cdb241d0e9701 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.12.2.tgz + version: 10.12.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.2 + created: "2023-05-21T15:21:04.813666067Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 404d8355403a104b89897b86b80c5b5badfcbadd32cc917dab3f3d532bfc9ba2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/consul + urls: + - https://charts.bitnami.com/bitnami/consul-10.12.1.tgz + version: 10.12.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.2 + created: "2023-05-09T15:51:50.661667454Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: eeb3c557108b625913ff1651fbe37e7c2c20af3314520f33377e4f8b8b693839 + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.11.2.tgz + version: 10.11.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.2 + created: "2023-05-01T12:11:35.143572949Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: e4da164e0806f4749d428c816d46a6355d266a29ed168bf0850aba6225bca68e + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.11.1.tgz + version: 10.11.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.2 + created: "2023-04-01T12:01:17.58764879Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 1e02958fd06b41c68fdd7eed99ba05bae7632eda1deb34a4f0b32c5faba12d5e + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.10.2.tgz + version: 10.10.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2023-03-18T22:24:16.14015326Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 8b272e627bea84469b136a3eef9cc3711e13d4643ce4cbf669eb828c54d0bfec + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.10.1.tgz + version: 10.10.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2023-03-10T17:15:30.708194314Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: d7775dc7ebc2b83536686da42960864b6d5591d88cd42eba0e67415e0161ae72 + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.10.0.tgz + version: 10.10.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.1 + created: "2023-03-08T02:38:46.898049577Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 697d4f27c08d7cc710f261ee2fe35771282c3b9d7db4b6e5c372ac66215e14d8 + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.14.tgz + version: 10.9.14 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.0 + created: "2023-03-06T17:58:24.550031637Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: e706ad04d5c4edd375cb9e19c0b2eb27970b8b91ee2cb444d00801839bd419a6 + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.13.tgz + version: 10.9.13 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.4 + created: "2023-02-17T15:23:30.711196577Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 567a9ff44437b12b9cb54f20350466bed9fe5b5a0622faba2e40a7efbf1af623 + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.12.tgz + version: 10.9.12 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.4 + created: "2023-01-31T14:44:44.513635183Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 8f28e4070dc6118292659cc714b7e8de2f6fae5cfb89ce14a7560f66d065539d + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.11.tgz + version: 10.9.11 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.14.4 + created: "2023-01-26T23:27:16.924068509Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 98a9b77fe19c67c6f320254604c0b19ec06ca3f583aaecdb84555a661e4aad9d + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.10.tgz + version: 10.9.10 + - annotations: + category: DeveloperTools + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 1.14.3 + created: "2023-01-13T23:15:33.545291846Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 3cd6a8919bcd85a2563189f0bfb7acab9f4f356b900b286a2e67509d29e45341 + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.9.tgz + version: 10.9.9 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.14.3 + created: "2022-12-22T11:08:29.029790532Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 0ecb12778e4dfff857af8079cdaafeb0e48e3fe2130416f8c819f21ee9c2bec4 + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.8.tgz + version: 10.9.8 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.14.3 + created: "2022-12-14T23:04:39.157226674Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 68d4642db535ac2b39e22d740e80bf54a59172809fcb9fa2631a96b20336811b + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.7.tgz + version: 10.9.7 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.14.2 + created: "2022-12-01T02:55:50.516531456Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 5990b3f97cf5d7e3345000996154e2ff0ffc48d121d0767a3eeeaed568ad9d68 + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.6.tgz + version: 10.9.6 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.14.1 + created: "2022-11-21T20:40:09.013758947Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 921b74c41bb417af30696726bb58ab3509dcb7bbb8f8e18a4f35f9b8b5db6278 + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.5.tgz + version: 10.9.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.14.0 + created: "2022-11-15T20:23:18.477672164Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: d08ea79f710077dc5588ecc7cf597be81ac61abe670ec13dfefed960d8a83fa7 + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.4.tgz + version: 10.9.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.3 + created: "2022-10-20T20:33:24.164528481Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: dcd07000a903309f1a87720c93ee8b452eed69783c465d05e185e8a2127f1bda + home: https://github.com/bitnami/charts/tree/main/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.3.tgz + version: 10.9.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.2 + created: "2022-10-03T15:04:58.303416765Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: c0088cb0f92ec3049d6b6e93bb5ff2eebad6e61d9815aff0b6d5d28d09995bf4 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.2.tgz + version: 10.9.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.2 + created: "2022-09-27T08:56:14.620465765Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 3ad275359e3f7449350c7a18283f6552733eb077cf1a9819058392635c3bcd9e + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.1.tgz + version: 10.9.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.1 + created: "2022-09-15T10:21:40.122692989Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 0eb1c7eee5ce6c7a75d599ec73482df35a13feacfc66fa237fb84af5e473a08b + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.9.0.tgz + version: 10.9.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.1 + created: "2022-09-11T12:31:01.475286186Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 7d002ecaa8c346ca4500af1acf339f2613c2124f5f3b5bab6963f72b01c2ccf6 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.8.3.tgz + version: 10.8.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.1 + created: "2022-09-07T08:59:09.7175419Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 1a1121003b381f58493ad81d66bfef751df8b9abb3d7d0d348786f5cfa616a0d + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.8.2.tgz + version: 10.8.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.1 + created: "2022-08-23T22:05:00.607251407Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 54821858d9ed6e80c1bcc231e08797cb85c313ea36cf7b40a0d16e3a29e39bc5 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.8.1.tgz + version: 10.8.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.1 + created: "2022-08-22T16:26:46.575007945Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 5e913e95c89f303247099c057b96ffbe4c177cf0f959471f10ebfd642c109046 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.8.0.tgz + version: 10.8.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.1 + created: "2022-08-12T12:30:49.736781783Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 40d54c0baf64cc4e5c7640e35239cd9640b6b50593dabc3db6eea27cb2cfef72 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.16.tgz + version: 10.7.16 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.0 + created: "2022-08-12T02:42:01.932818156Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 179a472b8006bf1cdefe9fd530295bd96ca9e41cfc69bb6888fd3b6761453ec8 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.15.tgz + version: 10.7.15 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.13.0 + created: "2022-08-10T08:46:53.200786852Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 263ff7bbc7e971150f33cd5f8fa95b0c828350d807d23efa2fead053c74a7c0a + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.14.tgz + version: 10.7.14 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.3 + created: "2022-08-10T05:29:51.5389673Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 8c00aaf9a129160fa55911a56133c1ad3ec00110cd0d538b9a608918bcf19cdd + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.13.tgz + version: 10.7.13 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.3 + created: "2022-08-09T06:36:32.187042374Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 217b05d40faf20b16445cf7d47b7038ddfe66db14a09eda87f17ae5fa41a1202 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.12.tgz + version: 10.7.12 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.3 + created: "2022-08-04T15:13:41.958865339Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 9b8d0883e982b6fe402cf3a9532078c72031d9d40e18f7a9875a38e76dd5f05a + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.11.tgz + version: 10.7.11 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.3 + created: "2022-08-03T17:22:49.304027786Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 0a9044aa821d0de5ef7a9790d43f9e804adb7c3261af18fc057540522a416c81 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.10.tgz + version: 10.7.10 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.3 + created: "2022-07-27T20:58:26.31511496Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 1b2630baf28177cdb4165bf9dbb0902e460e8d80734b5763b049808aab1b10dd + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.9.tgz + version: 10.7.9 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.3 + created: "2022-07-18T15:25:17.341518184Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: ee423ae5f80f2435d0eca10f8158d8dda80c0fa10cc19385f26d74b770bec02a + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.7.tgz + version: 10.7.7 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.2 + created: "2022-07-18T07:35:49.536306681Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: fc72975469078def2af24a581f717df214700fe00e5bc91bfefb5d4f19822e5e + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.6.tgz + version: 10.7.6 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.2 + created: "2022-07-12T12:09:31.765149447Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: f4b64b324467820e1a9ae68331469b4bd9ff5f679ef4ddb8a9643754aee41e13 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.5.tgz + version: 10.7.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.2 + created: "2022-07-08T20:00:47.028885911Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: eb5bbddbbae69af002ea47ec996c3d424ccc3d166d2b5a2d5df70610311f9923 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.4.tgz + version: 10.7.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.2 + created: "2022-07-07T07:00:33.330552124Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: 842a346d72c701de8f0ac61b7c15eb613ba6e048f1532997f5fede0f4bf50ebf + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.3.tgz + version: 10.7.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.2 + created: "2022-06-24T08:32:50.349856035Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: sha256:f6eaf13b5d9801c47f67bc6855f35afa52cb14ab9d6f2afbd2aa575e609006ea + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.7.0.tgz + version: 10.7.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.2 + created: "2022-06-13T10:32:19.703013645Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: sha256:607dc1bc824ac8e97e2a2b403b0ff0e1b1a39c65acced9b5a081e2c1dac7847c + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.6.5.tgz + version: 10.6.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.2 + created: "2022-06-10T16:48:05.628609293Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: sha256:56d12b1c9740839a0b7a95c0251d89485a864fcd202e28a47cb00ad4a38eb7db + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.6.4.tgz + version: 10.6.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.2 + created: "2022-06-06T22:18:40.143308902Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: sha256:83ef7437e4d022b75a51e6ae72d419de0ae729d303312c4dc8c8a0ed7d9577ab + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.6.3.tgz + version: 10.6.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.2 + created: "2022-06-04T04:12:29.592546469Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: sha256:a7bb88e2521ea8badcd0fcc6b09618dfb7f512602b4ad9c816126ce14016d1f2 + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.6.2.tgz + version: 10.6.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 1.12.1 + created: "2022-06-03T23:45:39.642415682Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HashiCorp Consul is a tool for discovering and configuring services + in your infrastructure. + digest: sha256:056bf2afe9651653ec40db5135aeff4190caa112a18b269f45cd1df4c934d0bd + home: https://github.com/bitnami/charts/tree/master/bitnami/consul + icon: https://bitnami.com/assets/stacks/consul/img/consul-stack-220x234.png + keywords: + - discovering + - configuring + - services + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: consul + sources: + - https://github.com/bitnami/bitnami-docker-consul + - https://www.consul.io/ + urls: + - https://charts.bitnami.com/bitnami/consul-10.6.1.tgz + version: 10.6.1 + contour: + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.30.0-debian-12-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.31.0-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.30.0 + created: "2024-08-07T01:48:10.426643645Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 81debd29faeca226d0dc242a70815533055d4c7c98b8dc8e19fe578ffd02c657 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-19.0.2.tgz + version: 19.0.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.30.0-debian-12-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.31.0-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.30.0 + created: "2024-08-06T08:01:46.793319953Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: df4c24ff901b228006ce9cc890f18259c39f9d7c72c937159ddeb37a529bc91a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-19.0.1.tgz + version: 19.0.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.30.0-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.31.0-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.30.0 + created: "2024-08-05T13:52:28.849277633Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 82034491e2db65e48bac2f964729f0b60d0cb09c69dffefb8b05cd17a39f46cc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-19.0.0.tgz + version: 19.0.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.2-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.30.4-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.2 + created: "2024-08-01T07:54:24.060224235Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 8d2a69e54bc257d22a8d26bc907aa1feb4b6f9f08216a19876b65f7a947e5375 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.11.tgz + version: 18.2.11 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.1-debian-12-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.30.2-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.1 + created: "2024-07-22T11:21:57.89192651Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: ce2d9df2095f0e044d2129c91b07d557d8fbea7eb48e54225dd01408963e5230 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.10.tgz + version: 18.2.10 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.1-debian-12-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.29.7-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.1 + created: "2024-07-04T13:48:36.687750756Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 9353714680ba5c225a0066bd9462d2db1cbb4af2bff04ff9184db294cef13317 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.9.tgz + version: 18.2.9 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.1-debian-12-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.29.7-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.1 + created: "2024-07-03T04:35:31.745475717Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: f8a0e5101cfd7d0798259057cb573ea96f96a44b7fdba4880d35d5bc5cb799e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.8.tgz + version: 18.2.8 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.1-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.29.5-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.1 + created: "2024-07-02T09:28:02.497112943Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 12fd58821f1ef5d9cfff0a638303ac61f29184a18600a5b4f6c6e285a6d728a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.7.tgz + version: 18.2.7 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.1-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.29.5-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.1 + created: "2024-06-18T11:40:12.059438784Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 4384e3d8784441073d5fd2545ae04b731c2d7935aca9e95dea2730779cbab125 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.6.tgz + version: 18.2.6 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.1-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.29.5-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.1 + created: "2024-06-17T12:29:31.142046826Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 783da260634edf4368a0e6502e21747511f666bcb4b0feb9eb3be97c086cb548 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.5.tgz + version: 18.2.5 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.1-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.29.5-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.1 + created: "2024-06-13T13:39:35.263432776Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 8f5aaa5b6aea3466083cbef117fa36abc1de89ccdc835c983febb890a2d3c501 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.4.tgz + version: 18.2.4 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.0-debian-12-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.29.5-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.0 + created: "2024-06-11T10:29:25.450438093Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 673ca12364fb2a1c53410946913fad746023293b69ad724b294d00f8110a2d7a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.3.tgz + version: 18.2.3 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.0-debian-12-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.29.5-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.0 + created: "2024-06-06T15:37:25.474416268Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 7f23ba3aa75d15bb39c747a96254036d24b4de1458379d252e70795d3add1faf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.2.tgz + version: 18.2.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.0-debian-12-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.29.5-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.0 + created: "2024-06-06T13:08:01.117604188Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 365a41d8ea13da6406e14e952118c2604440cbb3796c858f555c5c456757bc99 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.1.tgz + version: 18.2.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.0-debian-12-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.0 + created: "2024-06-05T09:56:34.091589448Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 46ca25f817d9e585d8b7e8d7ced3da4fd1dc2a610513bd239ef6e4bce84352e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.2.0.tgz + version: 18.2.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.0-debian-12-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.0 + created: "2024-06-05T03:15:46.77337757Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: f6235bb348e8793bf0baf149a309c7b62a86b1296f3c2d85272a23b8620a16a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.1.3.tgz + version: 18.1.3 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.0-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.0 + created: "2024-06-04T09:45:27.582173988Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 0a60888f6c878a6d566e0bca06d3a8d55f2b2de38f2beb1bc94e9534ff54cdbf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.1.2.tgz + version: 18.1.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.0-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.0 + created: "2024-05-22T15:49:45.241569653Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: bc8c2316dda8bbea157daa0b78283674caef119cceda4581b998fc3c43192dd1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.1.1.tgz + version: 18.1.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.0-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.0 + created: "2024-05-18T00:34:00.797780971Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 3c03bcec26dc7ac9b8dcfdc2e376dce7dcb39abbb20bdaf990cbe914b59ad450 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.0.1.tgz + version: 18.0.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.29.0-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.29.0 + created: "2024-05-16T17:00:57.780822112Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: b156d49ed9cf014cdf536b6a037de336ac8b39903ead1f903effad828deb9455 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-18.0.0.tgz + version: 18.0.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.4-debian-12-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.4 + created: "2024-05-16T12:35:54.766480969Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 72b363b3035667fa4376acb834e4b289e5df71f30c31953d7ef8a073f1082fd0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.1.1.tgz + version: 17.1.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.4-debian-12-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.4 + created: "2024-05-15T10:41:25.810579512Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: a14bb4f677dc9b0158bb4cc7f992ef316fb2fe7fe25b3fa8851ce3a2cd863978 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.1.0.tgz + version: 17.1.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.4-debian-12-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.4 + created: "2024-05-13T22:39:48.337779553Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 282332e4199db3736b7ba740d3fd2d74459edc78ce42b0beaf513cceeae03ba7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.14.tgz + version: 17.0.14 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.4-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.4 + created: "2024-05-08T00:38:31.913134686Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: ec66dac32bcc369c26ed0e7e830bd8e6862a4213e66f43f2c1b93b1cec0a7c2f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.12.tgz + version: 17.0.12 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.3-debian-12-r4 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.3 + created: "2024-05-07T23:07:45.823954553Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: b3f609376aefad949722432e912468688782609389143fc487b27840d6c406ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.11.tgz + version: 17.0.11 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.3-debian-12-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.3 + created: "2024-05-06T14:47:23.289314474Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: dda7dcdf2adc05abb7f720357f199c6a4940f9e1b0687d901096f9b066f589f0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.10.tgz + version: 17.0.10 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.3-debian-12-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.3 + created: "2024-05-02T08:39:21.710444413Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 88bab74b8b1f9a3598dc53e8d60d9b2631bd9aee0cd54a0c1ca991322b893501 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.9.tgz + version: 17.0.9 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.3-debian-12-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.29.4-debian-12-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.3 + created: "2024-05-02T08:00:09.994416044Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 8b346d551dfcc83d8461f4d0f330dc4c4af10bb581b083d897ce904d8a796171 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.8.tgz + version: 17.0.8 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.3-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.28.2-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.3 + created: "2024-04-22T12:52:49.091785618Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: c5074036caf9be827cb365fd472b0a8517c5d018a8a4c70adb67ce8eb9b431e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.7.tgz + version: 17.0.7 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.3-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.28.2-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.3 + created: "2024-04-19T09:36:34.674647955Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: cda9fdb1775869a0c6d8bbbd4f918dfbc2b58f6b382e2294945f6908774c90b9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.6.tgz + version: 17.0.6 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.3-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.28.2-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.3 + created: "2024-04-10T18:58:55.132970527Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 1a2b60cd368cdec4caaf93d0881621c214d2928d5173265c154162250878a382 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.5.tgz + version: 17.0.5 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.2-debian-12-r4 + - name: envoy + image: docker.io/bitnami/envoy:1.28.2-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.2 + created: "2024-04-10T07:37:47.921726076Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 86931d3067595325888285f494801d22684ebcc28ec8b05507d7b018cb594c5a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.4.tgz + version: 17.0.4 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.2-debian-12-r4 + - name: envoy + image: docker.io/bitnami/envoy:1.28.2-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.2 + created: "2024-04-05T23:28:00.510015012Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: a44096cc3974f599153a0dcd4d5bce29e798ba7afebbaec5d55056f1d13a9e32 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.3.tgz + version: 17.0.3 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.2-debian-12-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.28.1-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.2 + created: "2024-04-04T13:40:53.800010999Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: c5f3e43aca6265e0f6a66df8a4b7009da33c9d57d612b86c07c775edb1027ddf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.2.tgz + version: 17.0.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.2-debian-12-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.28.1-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.2 + created: "2024-03-19T17:02:59.474944663Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: bc1f355fa020cf400365586b8780e91c8e4a94b3f5195c0e8963fd2d3e13f461 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.1.tgz + version: 17.0.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.1-debian-12-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.28.1-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.1 + created: "2024-03-15T11:03:07.68168369Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 56d11fcee4d841875f994d01510b58f6fc3ff729c391aca6e6a23186b84f337e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-17.0.0.tgz + version: 17.0.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.1-debian-12-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.28.1-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.1 + created: "2024-03-08T17:54:59.674115687Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 1173231fd742d20e743e4ba0e257664e15c4bb6a0303e2fa87b48909826398f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-16.0.2.tgz + version: 16.0.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.1-debian-12-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.28.1-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.1 + created: "2024-03-08T16:49:52.797182219Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: bd3f21b17b8acd23c0d7afc2ec3d18cef10d81ab83b4da3a1ba82af63f6c8f64 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-16.0.1.tgz + version: 16.0.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.28.1-debian-12-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.27.3-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.28.1 + created: "2024-03-06T21:49:40.049836319Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 4dd49b45ac5df3d337b18965a43c2b01f58469ef93f6960a2bd73e654e9c2b4e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-16.0.0.tgz + version: 16.0.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.1-debian-12-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.27.3-debian-12-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.1 + created: "2024-03-05T15:00:57.660656196Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 510534f96da4b7808c98418d231041b2a450ab1a07cd84c949e3385cc5580cab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.6.0.tgz + version: 15.6.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.1-debian-12-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.27.3-debian-12-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.1 + created: "2024-03-05T11:58:31.333310334Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 95928c7e7c40334893bdf217a65f933dc570691b1f3e3798df17513db872f288 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.5.3.tgz + version: 15.5.3 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.1-debian-12-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.27.3-debian-12-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.1 + created: "2024-02-21T16:22:01.701587179Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 15b8fb4fa7b53b719305978899d00beb0de59cfe2123956a9ac290cfd1414fef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.5.2.tgz + version: 15.5.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.1-debian-12-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.27.3-debian-12-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.1 + created: "2024-02-21T13:14:59.675521485Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 88d6c7fbaccf87d01d7e6c55b3b503f1e9a556990d6744f435bf07f6039c49cc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.5.1.tgz + version: 15.5.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r9 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r8 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-02-08T11:02:57.736052272Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: ae07968a994d136e9e6d7cb40bbe4d15890e983e3df05b32b5383bbb51881c91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.4.0.tgz + version: 15.4.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r9 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r8 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-02-07T14:44:52.321327497Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 9d05b2e4518bf681171d5c955271592b8a2ba5c9a1caee79468b0fbacc376bd8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.3.7.tgz + version: 15.3.7 + - annotations: + category: Infrastructure + images: | + - e + - n + - v + - o + - y + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-02-07T11:05:08.883847343Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 0a5d9cd54bd8e02996160cb18f26c65f5e15bf8ddbc25862314aa50602f58525 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.3.6.tgz + version: 15.3.6 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r7 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r8 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-02-02T16:39:59.726429327Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 686c1564efd8a914185085bbd31406d2d928648c477a00d5d23bd0d076167c5e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.3.5.tgz + version: 15.3.5 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r6 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-01-31T12:33:54.072133527Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 862e0e7d8367cbc521cfc86a6e73ee89db6a6a36c9a0656357cb0406a4354849 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.3.4.tgz + version: 15.3.4 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r6 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-01-30T04:44:37.041808822Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 5888f4b0d03f7672360f8ab6081ad5c5e295cc554c435cdbb03ddc5326a31f45 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.3.3.tgz + version: 15.3.3 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r5 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-01-26T23:50:56.310708791Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: fac002465bef03314daf20a1c43dbeb0cc6f9b45450418ef4ea3ecfbcf610933 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.3.2.tgz + version: 15.3.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-01-26T12:17:49.020445161Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 02e9e3257add67bd18a3aa0e1ecc603211fa40108cc323d7eee7bd37b8f0100d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.3.1.tgz + version: 15.3.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-01-26T11:59:40.594664461Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 16b429212dfb3257b82d039c1f120df05f607ffa0e008148ba9f0a2b63dcffa7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.3.0.tgz + version: 15.3.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-01-22T14:02:04.121793381Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: df02803f135ddd6f19393d5b0e5c34ca17e1199c8510bb71734ca95d50ebd877 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.2.0.tgz + version: 15.2.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-01-18T15:41:57.155308569Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 2c374b994643119794e525478906c7950b75cf15068e40b08e89d6f374d8c272 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.1.1.tgz + version: 15.1.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-01-17T16:37:52.034634175Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: bd6d452a11168d937a10732a793d495123770dc279ee013751ddab16b4d0e30d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.1.0.tgz + version: 15.1.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2024-01-10T10:17:41.503581118Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: df1a2a5b88a380f1626dd74c7a955afc0d4d446f02f356d9dac2fb4bc08384f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.0.2.tgz + version: 15.0.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2023-12-07T11:02:05.645700565Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: ddb144d62c1a76dadb1428d9d03b31dbf2d7b865c8b08ee1e72ddd64781cb94f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.0.1.tgz + version: 15.0.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.27.0-debian-11-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.27.2-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.27.0 + created: "2023-11-22T13:38:21.074695249Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 993d661f659072b69c23732c5e619f4f04003cfe2c31f7b91ea332b89ffe7f31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-15.0.0.tgz + version: 15.0.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r3 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-11-21T18:17:40.475903625Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 4b7de928b2f1c7ea5b4907b559a84adb7ca0060dd76781594d64892d6f59fd7e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-14.2.4.tgz + version: 14.2.4 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-11-17T13:08:37.689167804Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 061d558356a599085ad2898581f7441beeab4b5098ea6e3fa231374b665321be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-14.2.3.tgz + version: 14.2.3 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r2 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-11-16T21:20:38.143010286Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: f68176c915831cd8cbbe082889031b467f7ee54c3a6c67b965f7302ae56ede28 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-14.2.2.tgz + version: 14.2.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-11-16T20:35:55.096320921Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 634ec1e45de2873f2c33b3585bcdc5c3d4800edf07bd70997dea4c5afc0de937 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-14.2.1.tgz + version: 14.2.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-11-14T09:01:46.144269916Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: a2512a7239766ab857732e38394cc1b4f395f7276f244cdea7fe6584fcb013f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-14.2.0.tgz + version: 14.2.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-11-09T09:20:30.373096188Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: d295406925c19830ea612ce7fb008c85e18046e73ec5117352d04110c5a05004 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-14.1.0.tgz + version: 14.1.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r1 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-11-08T17:41:11.7450154Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 1c76cc0000a04ef18a50084940aa15952bbdb54f26b3b58ed61a991668ab73d4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-14.0.2.tgz + version: 14.0.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-11-08T16:59:17.59329556Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 10b2f81c39ef804b48a44df4e71b91656eeb5c178eff34ec10082a790d13ad67 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-14.0.1.tgz + version: 14.0.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-11-07T08:41:44.78039266Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 950cd4a1e43d9b23e544796b47bb38ffb72c1bfaa9c23c932a675851615cfbbf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-14.0.0.tgz + version: 14.0.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-10-30T15:59:37.976971811Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: d628b4ffd080028699b5944f306eeb090e02575a8951a3480c750499c8a8d87e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-13.2.0.tgz + version: 13.2.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.1-debian-11-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.26.6-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.1 + created: "2023-10-17T21:04:49.671244801Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 3def081a68f54dd743d67b5a1b91cb4055bac37f9017dc380e41031e7fd68160 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-13.1.5.tgz + version: 13.1.5 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.0-debian-11-r17 + - name: envoy + image: docker.io/bitnami/envoy:1.26.5-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2023-10-12T15:38:26.765506399Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 480d926e17331467734977da6707979cc16e40390b28c30f2ce778899ef805cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-13.1.4.tgz + version: 13.1.4 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.0-debian-11-r16 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r66 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2023-10-09T19:52:38.52402997Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 9c2bcbfdaa05b2244c6f695ba37d9e46278d03b69228b6dfe7701880f14a0d6c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-13.1.3.tgz + version: 13.1.3 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.0-debian-11-r14 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r64 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r42 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2023-10-09T12:32:07.360316719Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 50b868d72092b14e42b2c4d278e5e30ef6acf83ab7f8651253b4406cff7df85e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-13.1.2.tgz + version: 13.1.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.0-debian-11-r14 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r64 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r42 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2023-10-03T20:03:03.102300535Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: ade9806176d064566d7aa23328d93b7d3d10a6f027cf90795246780ced022781 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-13.1.1.tgz + version: 13.1.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.0-debian-11-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r49 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2023-09-25T15:58:46.60277898Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: c5084832921813c66560498a538f23a82c91934ab77ab950430e4f909d153643 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-13.1.0.tgz + version: 13.1.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.26.0-debian-11-r0 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r49 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.26.0 + created: "2023-09-18T19:46:33.33011309Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: a958418611fb95b710b677c9b99feaa3bb6fef6a2f17261be724a64a492b6792 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-13.0.0.tgz + version: 13.0.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r46 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r43 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-09-18T15:16:21.276360697Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 6b966a05526c50e4e69f06ecc66a6bccf8ac6270a22c70f4bb6bf1b7925395eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.6.4.tgz + version: 12.6.4 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r46 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r43 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-09-12T08:59:04.203833206Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 480c409b007fb493fea353de2b51a7fa1377283ae8b214843bdf328753d50e72 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.6.3.tgz + version: 12.6.3 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r22 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r20 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-09-06T12:53:03.294491849Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: e21a8854502c6af0c3adfa117ca933485bf8bb35e97e14255b18c62f63880955 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.6.1.tgz + version: 12.6.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r22 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r20 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-08-31T16:27:50.012216146Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 85b94ee1def1ebe11d90503334edf692e44a88f4e517a3c2cac102240fd62e17 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.6.0.tgz + version: 12.6.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r22 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r20 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-08-25T12:54:44.561095282Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 43fbd6b4918956c1837becfcbc9451b97e086ae79a4725f399084afba09a18ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.5.0.tgz + version: 12.5.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r22 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r20 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-08-22T18:51:19.565769614Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 7a1ef1a63e1169ac5c44ee2d6013bbcff445d6e296da2da1b9ad1765d5d5d632 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.4.0.tgz + version: 12.4.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r22 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r20 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-08-19T12:59:29.518376954Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: af3957a99dd5a482000da26279473bb26bb6e2e3679a04c09b4c449714c62d73 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.3.2.tgz + version: 12.3.2 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r17 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r20 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-08-17T15:44:25.739539477Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 3d34d7df259175c8f92d62d066a1aea81843b462afef8c924dfd9ca493ef3115 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.3.1.tgz + version: 12.3.1 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r11 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r11 + - name: nginx + image: docker.io/bitnami/nginx:1.25.1-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-08-17T17:33:31.924218577Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 4ab8331868bc716f43d715e31fee4a98d7e8f7794946a20cbb9f5265d772caad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.3.0.tgz + version: 12.3.0 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r11 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r11 + - name: nginx + image: docker.io/bitnami/nginx:1.25.1-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-08-14T10:04:50.919212483Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: ada82ca5e08a0650b9d6c93b50e04d19a734826111ee47f586e70e50fd1ba16d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.2.8.tgz + version: 12.2.8 + - annotations: + category: Infrastructure + images: | + - name: contour + image: docker.io/bitnami/contour:1.25.2-debian-11-r11 + - name: envoy + image: docker.io/bitnami/envoy:1.26.4-debian-11-r11 + - name: nginx + image: docker.io/bitnami/nginx:1.25.1-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-08-09T08:17:22.51507291Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: ababdc2fea3360beb63aab27a0f932b8d563d57d0bff80a2956a52b3aee41aee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.2.7.tgz + version: 12.2.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-08-08T16:25:05.825808294Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 2fc7073f71b15e675e558397e449fdc006c52636ab39948e462b9de8663a5fb1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.2.6.tgz + version: 12.2.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-08-08T12:50:33.135765794Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 4539a747c6a6b9dd53ebb41c8d2d650957b6e34cfb3b51f56a267b47d948d5e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.2.5.tgz + version: 12.2.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.2 + created: "2023-07-27T13:48:15.805001341Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 1907022bf3694fb2ea9ae58023daf1f45c8696d4a83b28e67c0943bbb78da3ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.2.4.tgz + version: 12.2.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.1 + created: "2023-07-26T22:08:21.317342288Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: b527e15fbb68077284ebaa6f56503978424916af5a83f43bc9c83b2dc2d0b81c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.2.3.tgz + version: 12.2.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-07-25T12:30:34.296658265Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: fde460baf9765f09c419a45d62d00ba6b71b2f7cfbb16a3a7f180d5147e6fa8a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.2.2.tgz + version: 12.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-07-24T15:33:32.261526451Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 343d43b27e17231305f966eac1e71fde8898e54331b3d2a63f03431a3b3cf572 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.2.1.tgz + version: 12.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-07-19T08:02:44.718207023Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 31e9bfc6f75ea08a4390785322e1d083a253f5b3af428826cdfe01066d3f0f15 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.2.0.tgz + version: 12.2.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-07-21T14:36:46.801830084Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 8cd85842fa9091efc7f151a47ae1b7cf486878c2795a8d3d0249133b0e126024 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.1.2.tgz + version: 12.1.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-06-20T15:11:37.791155168Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: f906d1a85a606dcfffdb19f8dd403700a2e9ecb30d33a1a829a41f0f79d8e435 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.1.1.tgz + version: 12.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-05-25T10:07:03.024172593Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: b498c447ef0362c3a4589e754ccf6ac4604904baa43f57ee74452d58ee6bb41f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.1.0.tgz + version: 12.1.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-05-25T07:02:36.908531938Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 18f90f4187591a9b9e6ced700974b84d126e0677201bd1d03d6996c400e9f9b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.0.4.tgz + version: 12.0.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-05-23T09:37:13.434734405Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: b293c57d157963d988b1eef0773e364269f957fc189a5b596cc3ac28b8f47de1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.0.3.tgz + version: 12.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-05-21T14:56:09.807550518Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: ac6065938d2b3704585127bdacabee02513794eabca42e6e5de0804e31fe35bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.0.2.tgz + version: 12.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-05-18T09:17:35.436107049Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 0b7da090f3d5d58335c4d530de3fec5ef4c308cbb368c428ccbc685c43abf33a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.0.1.tgz + version: 12.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.25.0 + created: "2023-05-12T17:29:34.46390312Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: b9e7c4f3db3b25204697a91fd9ce9bf0f4ed67f06accea443c6637b0d15a5323 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour + urls: + - https://charts.bitnami.com/bitnami/contour-12.0.0.tgz + version: 12.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.4 + created: "2023-05-09T15:02:58.321538896Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 52d0c4a4c197d077aee14fd1d935b6b068a966402b76f1785433c5fa83a7378d + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.3.2.tgz + version: 11.3.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.4 + created: "2023-04-29T18:09:15.225812224Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 6cba41320986e633cb8aa949773c85fdf3895c722c0013fbd60bffc6b35dfefd + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.3.1.tgz + version: 11.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.3 + created: "2023-04-24T15:18:13.335983635Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: de0c1fe84ee1b31bf9ea151a0a43a44e4a065a476d62acca5706280e4b541893 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.3.0.tgz + version: 11.3.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.3 + created: "2023-04-10T07:17:34.358045335Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 53be610f2f0a9c7a24cf6adda796d45002733c6a746886163a340eb3ceacc22b + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.1.3.tgz + version: 11.1.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.2 + created: "2023-04-01T12:08:17.252844649Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 06589b69525268f1fdd864b5e16b086e92975a72cd0276fcb48adb964d34d111 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.1.2.tgz + version: 11.1.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.2 + created: "2023-03-18T22:30:21.52909175Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: c426eeb8c5200773ca8a38bfab16e8b42101a2146d66fc515dcbf3695a93ae73 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.1.1.tgz + version: 11.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.2 + created: "2023-03-17T12:49:55.181705844Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: a6d62a17d649508f68a78436b21b2136ba2dc1d8e8411b5f956e5b9638ff02cf + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.1.0.tgz + version: 11.1.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.2 + created: "2023-03-14T23:48:22.301318588Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 4db470611fcc8adb4e2f1eabe0aa56b6fc12aab6dcc40e7ff7b9f66c5a027046 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.0.4.tgz + version: 11.0.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.1 + created: "2023-03-10T16:44:21.20200436Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 8f01309600bf853eb49efcf4cd4f3c4020af08ac535f8f1bfedfa09d0db3ee51 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.0.3.tgz + version: 11.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.1 + created: "2023-03-09T11:26:29.648852755Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: ae6b0d9c565df95b41338d92f82db2537ebbedc7dcf6efada732e6ccdc3955aa + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.0.2.tgz + version: 11.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.1 + created: "2023-03-01T10:15:10.639371548Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 5ff08f10d1f5ee5d546bf985769164ab4c483008ef059558e762ea89b231218c + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.0.1.tgz + version: 11.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.1 + created: "2023-02-17T10:22:20.476086322Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 9ac3de2c3c8c8ff44b432da55aea336167c98194516efcce8352088d77a3a87e + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-11.0.0.tgz + version: 11.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.23.3 + created: "2023-02-08T19:52:26.020784359Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 390d490b8819557706aa66efbdab7d4654f68a6f2fa5c240f5f6ed90e8f67e35 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.2.2.tgz + version: 10.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.23.2 + created: "2023-01-31T10:47:52.178529998Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 4dd32f2ec5078e068043f9065683dd650b07e09a5c73712fa4e308b9e94b6988 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.2.1.tgz + version: 10.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.23.2 + created: "2023-01-26T09:53:19.604173735Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 5cff252e66483c1b63954d9819d7f03cda221c6e1867a9fa124875024f32708b + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.2.0.tgz + version: 10.2.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.23.2 + created: "2023-01-25T08:55:39.561141116Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: d84dff3bf39ae9f571ba435d51d74f8584392591113271d3dd63e23f191e5877 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.1.5.tgz + version: 10.1.5 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 1.23.2 + created: "2023-01-12T08:47:04.942302031Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 439c1d041f460fd6a0d63bb0a5330ae1b1529654cccf4e91763092441869968f + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.1.4.tgz + version: 10.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.23.2 + created: "2022-12-13T02:38:58.384597078Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: f7f8c4215f63ea31d68e2f013f5e49158c25c2f5d811ecd2505bdfd30353ce79 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.1.3.tgz + version: 10.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.23.1 + created: "2022-12-07T02:02:15.343299115Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 6fca283dab1085468204a657f048c8e446aba1662aeb4bf48c258301e2b86e25 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.1.2.tgz + version: 10.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.23.0 + created: "2022-12-04T15:22:02.070608356Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: a4e12f15b2e2993c424bc2c2ac7bc7ab99e1db1e247c0dad6409ad522918377e + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.1.1.tgz + version: 10.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.23.0 + created: "2022-12-01T10:25:06.182192679Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 1267f8f08ae8c4f1639e6ee42ebd0b5fa02d65496f906e77374a36b264583122 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.1.0.tgz + version: 10.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.23.0 + created: "2022-11-30T10:45:09.823564191Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 5824038b5b1bb504ce493ec45f70d77f5bc2047b24374bc2e9e7e51b54aeaed9 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.0.1.tgz + version: 10.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.23.0 + created: "2022-11-07T15:35:10.898232488Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: bfb1b73d8677a77f603747dec116334282c75d60cfae9e28a67d2457b8e9e748 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-10.0.0.tgz + version: 10.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-11-03T13:11:45.396454205Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 4b8b002caf46f9f0410e2534e3a35c6c0e31e09c03d4dc060955488d99852a8b + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.2.0.tgz + version: 9.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-10-31T14:20:36.235216392Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: 5bb82bbbbf023ce1d5aa5146c26e12d8ea3d9272871be45088ed442d7007b670 + home: https://github.com/bitnami/charts/tree/main/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.1.7.tgz + version: 9.1.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-10-08T06:28:22.313289325Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:69a76053f290ff51920f0154a7e05debf57c7b59d6f8c2c0e44f9200d3982ed8 + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.1.6.tgz + version: 9.1.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-10-05T14:11:01.666392769Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:eb34516635ad3b97d6970a989829bab7e66f5b5e64dbf117637f39756749c7c8 + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.1.5.tgz + version: 9.1.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-09-29T13:50:52.050124737Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:a8b78ff6a16cb2136845755342b24cdf16bcbcb6589b595b1c6407ecedf3c31a + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.1.4.tgz + version: 9.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-09-21T09:54:53.398173352Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:424228dbddf23ecc1f15c944b21d11c9e142ab39d87293579e460186ec0d1269 + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.1.3.tgz + version: 9.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-09-08T06:32:33.697580287Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:ec7fc18ff271f54280844c2ccbbdc6cb5e00934674e3adcaef92acb782a776d0 + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.1.2.tgz + version: 9.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-23T22:58:15.073942611Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:f1c07189480c8340fbfd1a331d45fcda02b3ad66523b4155ce7302c24f8153b2 + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.1.1.tgz + version: 9.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-22T18:48:26.221220709Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:54d67970b27c266692d42ed276da993d2a8de6aa41681bb2a8fbe3d5c21b5821 + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.1.0.tgz + version: 9.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-09T14:45:32.897502684Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:8adae45098c6ccb785e51184eaa74bfea74aa5a7ca3b292df1740a1c38eb000d + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.0.3.tgz + version: 9.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-04T22:54:06.286552643Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:26bfeed467aac0162a9a07be927fcbdec9039e8a6eaa5ebd15c29bbb1b17ef8d + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.0.2.tgz + version: 9.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-04T08:31:07.076037454Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:e00ae5e8e1317c29ad89e2eb976239175e8ed112f6675f01facacc6c57cda67a + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.0.1.tgz + version: 9.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-02T16:27:56.753166225Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:6e3b45fa776b6f32ac68d3edcc529497a56733d1d42d2e1a7abe7a5a7e86d030 + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-9.0.0.tgz + version: 9.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.21.1 + created: "2022-08-02T09:09:13.820155056Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:ad165a61191994a2dec5b7d1ad6b99d6e84d8eca413158f1cb77707b2a0bd35d + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-8.0.7.tgz + version: 8.0.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.21.1 + created: "2022-07-27T10:30:10.852515079Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:bd7f0d52d88c7bbab463f0ff017ba972eaa1a19a147ff77a26a4d6f9ba2c7bc1 + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/containers/tree/main/bitnami/contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-8.0.6.tgz + version: 8.0.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.21.1 + created: "2022-07-18T14:31:08.439850933Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:06a640cc785f2f713d426129066fb9b97f177ac8bc261abd654126edea1549cc + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/bitnami-docker-contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-8.0.5.tgz + version: 8.0.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.21.1 + created: "2022-07-01T04:10:26.209126144Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:255251d2d0c37a2cd633b7213b01b041280036b4ecfea32940b390e8361cf91e + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/bitnami-docker-contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-8.0.4.tgz + version: 8.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.21.1 + created: "2022-06-24T02:28:49.807432796Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:c9f0881cd956f15683f7e357ec00a730a5633ec07c23543ad53fb5a831bf9fb4 + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/bitnami-docker-contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-8.0.3.tgz + version: 8.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.21.1 + created: "2022-06-20T11:17:11.329986732Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:6f70c0f1df8f1a1d15edee1c3c567b098c62df3496dca4d4cbf3a8665b93a03a + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/bitnami-docker-contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-8.0.2.tgz + version: 8.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.21.1 + created: "2022-06-14T22:17:49.851711763Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:47c1781eaa0aeacd7e4d1a69cd73daf81182666b7817bf70728b6d37fa5f9c9c + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/bitnami-docker-contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-8.0.1.tgz + version: 8.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.21.0 + created: "2022-06-10T18:21:56.519733738Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:e32893e0eaa7d4d65ca08aa11c92172287e84a77b829f3a6c80d417e36460a78 + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/bitnami-docker-contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-8.0.0.tgz + version: 8.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.20.1 + created: "2022-06-08T10:41:32.541834632Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:c07374c61670823016a0658969fcd30cb778ff5c54eb8bc85e0eecc520f9d3bf + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/bitnami-docker-contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-7.10.2.tgz + version: 7.10.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.20.1 + created: "2022-06-01T14:53:03.493647271Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Contour is an open source Kubernetes ingress controller that works + by deploying the Envoy proxy as a reverse proxy and load balancer. + digest: sha256:8516f4aaa0aa7342e148b47c2c10c6f1c657eb8c601d4fc82c6653d102416b7f + home: https://github.com/bitnami/charts/tree/master/bitnami/contour + icon: https://bitnami.com/assets/stacks/contour/img/contour-stack-220x234.png + keywords: + - ingress + - envoy + - contour + maintainers: + - name: cellebyte + url: https://github.com/Cellebyte + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour + sources: + - https://github.com/projectcontour/contour + - https://github.com/envoyproxy/envoy + - https://github.com/bitnami/bitnami-docker-contour + - https://projectcontour.io + urls: + - https://charts.bitnami.com/bitnami/contour-7.10.1.tgz + version: 7.10.1 + contour-operator: + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.0 + created: "2023-05-16T09:23:19.034209148Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + deprecated: true + description: DEPRECATED The Contour Operator extends the Kubernetes API to create, + configure and manage instances of Contour on behalf of users. + digest: a68e63c87d29cbda2a8a6f9d94da3c7c15edac251b4f6d63b7c25aad82f9720e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + name: contour-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-4.2.1.tgz + version: 4.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.0 + created: "2023-05-09T15:07:41.601040708Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: 98154d05c5427f5d319edbe9f3a2861c2cc5c1310b009bb7fd0373caac1fde71 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-4.1.2.tgz + version: 4.1.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.0 + created: "2023-05-02T08:09:55.953380306Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: 42c1c9b1a126d8221816d3e52f94ebe547bccebf7c32b8eab46e78adab689d04 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-4.1.1.tgz + version: 4.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.0 + created: "2023-04-01T11:57:35.349794571Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: 6dd2256158133db4dad0900481ecf7e0225941961b0fcd8b2bf6abf771a2aae7 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-4.0.3.tgz + version: 4.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.0 + created: "2023-03-18T22:29:47.859483337Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: c24cb8c3a14746f56ab11ec7c7317c15138cb6a3623c797fc43d884fb2250767 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-4.0.2.tgz + version: 4.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.0 + created: "2023-03-01T10:01:00.893905991Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: 47be52a0b405aca88066622b448d1ba9b52b7340548ff4cbc54ae01fc4b8ff18 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-4.0.1.tgz + version: 4.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.24.0 + created: "2023-02-17T12:50:00.648464101Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: 4d10777b04fed9c9df14c70e78d4292399552e9229513c2f4f1c5ab4d1671683 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-4.0.0.tgz + version: 4.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.23.0 + created: "2023-02-03T10:30:03.996900139Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: a8b38425e7635ec304dab2a6368f74150ff17a5df0e26aa24cc2589ef6f46f2e + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-3.0.3.tgz + version: 3.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.23.0 + created: "2023-01-04T10:13:47.0161656Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: 980bdaaa5ca086b4e3a20a182c8ef6e629853517cb7e13ead58ba5d974eda3f2 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-3.0.2.tgz + version: 3.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.23.0 + created: "2022-12-05T08:21:00.658330171Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: 981232d0705bc47fb35409dc047aa38ca03c2c0da9bbd8db249402cbb5439cc4 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-3.0.1.tgz + version: 3.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.23.0 + created: "2022-11-04T15:17:45.4415459Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: b9dec96932892cb76c987348350478c0bed6e60ab0882934c5bed27123daac80 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-3.0.0.tgz + version: 3.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-10-08T07:06:48.782320329Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:b1c6238905e092ad7f6b6f0d41736d85e2e4cec0d52356fe3fed2eafac7b2c21 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-2.1.6.tgz + version: 2.1.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-10-06T23:49:29.588155224Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:ca30032a317137cda32caca57e0a63d7ed3caf16253507399a45cc4e86a0ff87 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-2.1.5.tgz + version: 2.1.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-09-20T08:22:17.431120146Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:ea671c20e4b3ba553275621df2769728947fddbd2529cc42aec839a57c680fa7 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-2.1.4.tgz + version: 2.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.1 + created: "2022-09-08T07:09:30.250560636Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:006b3b9a4215ba36589be758e06e12097717208ad54b0dd9a5a17310d907bf76 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-2.1.3.tgz + version: 2.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-09-08T03:42:33.088355082Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:8ce8113886bea83363827dfcd3926a27e61d44ff133a3841efe205b51df6956c + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-23T23:36:33.893985578Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:e979c698cea86a7ee8ab72baf48116fc06ad38e753393418a65e2bce76912de7 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-22T16:47:11.854633285Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:ac3d4288eda6c1f574f456fd3d6ddf00f458a2e6973389c8805d2d3fd868b6e5 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-09T04:31:29.564014864Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:d3cfaf7d1da9858977f4794032c588bc0fb09f937cdf1af34ca6ed480b2a8aee + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-2.0.2.tgz + version: 2.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-04T22:14:16.90013463Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:f34113dcd34e698ea33d098574ce1c04b1c061e3bb5df7b8e119aa1e801d7fdc + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.22.0 + created: "2022-08-03T10:41:42.065101755Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:300c2f0de83bd0618ad8a41779989311952e8c0a13dee455968b361bc40a0185 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/containers/tree/main/bitnami/contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.20.1 + created: "2022-06-03T20:34:56.211283041Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: The Contour Operator extends the Kubernetes API to create, configure + and manage instances of Contour on behalf of users. + digest: sha256:203eea36c08d0e14a0f339b9124c16f6f2000bd693bfed7f17bc800b3f501377 + home: https://github.com/projectcontour/contour-operator + icon: https://bitnami.com/assets/stacks/contour-operator/img/contour-operator-stack-220x234.png + keywords: + - contour + - operator + - ingress + - envoy + kubeVersion: '>= 1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: contour-operator + sources: + - https://github.com/projectcontour/contour-operator + - https://github.com/bitnami/bitnami-docker-contour-operator + urls: + - https://charts.bitnami.com/bitnami/contour-operator-1.2.1.tgz + version: 1.2.1 + dataplatform-bp2: + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.0.1 + created: "2022-07-25T08:34:49.534755218Z" + dependencies: + - condition: wavefront.enabled + name: wavefront + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: spark.enabled + name: spark + repository: https://charts.bitnami.com/bitnami + version: 5.x.x + - condition: logstash.enabled + name: logstash + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: kafka.enabled + name: kafka + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + deprecated: true + description: DEPRECATED This Helm chart can be used for the automated deployment + of a data platform blueprint containing Kafka, Apache Spark and Elasticsearch. + It covers optimized pod sizing and placement diversity rules. + digest: 9becff4a1bd13eaa78fbf663daaa2794ab5260763303c56c3d3c9e8509b3499f + home: https://github.com/bitnami/charts/tree/master/bitnami/dataplatform-bp2 + icon: https://bitnami.com/assets/stacks/dataplatform-bp1/img/dataplatform-bp1-stack-220x234.png + keywords: + - dataplatform + - kafka + - spark + - elasticsearch + - logstash + - kibana + - zookeeper + - apache + - tanzuobservability + - wavefront + name: dataplatform-bp2 + sources: + - https://github.com/bitnami/bitnami-docker-kafka + - https://kafka.apache.org/ + - https://github.com/bitnami/bitnami-docker-spark + - https://spark.apache.org/ + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + - https://github.com/bitnami/bitnami-docker-logstash + - https://www.elastic.co/products/logstash + - https://zookeeper.apache.org/ + - https://github.com/bitnami/bitnami-docker-zookeeper + urls: + - https://charts.bitnami.com/bitnami/dataplatform-bp2-12.0.5.tgz + version: 12.0.5 + deepspeed: + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.4-debian-12-r11 + - name: git + image: docker.io/bitnami/git:2.46.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.4 + created: "2024-07-30T09:49:59.267526783Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: dc97d3e1ee79a7f7c4039289b05910f6210e5da350cd8c12b8d59fb4fdffe378 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.14.tgz + version: 2.2.14 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.4-debian-12-r10 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.4 + created: "2024-07-25T10:31:11.15871213Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: f6d05c2b933d04307194927f1c44c4652c07d2d602f5014bc627941e5ab785c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.13.tgz + version: 2.2.13 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.4-debian-12-r9 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.4 + created: "2024-07-24T05:42:16.117843163Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 63afd124962cfdad68e34c1d124544d05506be21a21e5b964c6460d6fcd0884e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.12.tgz + version: 2.2.12 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.4-debian-12-r8 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.4 + created: "2024-07-23T22:51:10.194156199Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 4872a2e7cc28d359a43c9dea5b51a066383c4786cda2e2a0f44af7153e1e7263 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.11.tgz + version: 2.2.11 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.4-debian-12-r5 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.4 + created: "2024-07-18T08:49:13.105393281Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 8621f53459129eefd5a696a5fef6bd64dfa9fcad14aa24eb83d7051c9d526f5b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.10.tgz + version: 2.2.10 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.4-debian-12-r5 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.4 + created: "2024-07-05T12:50:02.530549052Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 2b10c90dad06b6b273d2cb2631b8016cad45461d725123bd9f93e00741b7d967 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.9.tgz + version: 2.2.9 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.4-debian-12-r4 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.4 + created: "2024-07-03T18:21:52.883687601Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 31837e91fa829f2a610d2d744f71dd6a203e400cb48151561f5e6ead42e24333 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.8.tgz + version: 2.2.8 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.4-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.4 + created: "2024-06-28T07:26:14.53565418Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 3715c082b16be65af5507771d0d0084c18affe7faf3f42a944b74714eefe4448 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.7.tgz + version: 2.2.7 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.4-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.4 + created: "2024-06-27T10:28:47.74160407Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: ddd0032e53668066579a9e0af0ac2bad2f23a4c309f7dc5575898e804dd406a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.6.tgz + version: 2.2.6 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.3-debian-12-r1 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-06-21T15:16:35.649045006Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: c2f20d70763202ceb42270f3cff0679d5c4ad8c5c1e6ec50929753c1882b1e23 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.5.tgz + version: 2.2.5 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.2-debian-12-r6 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-06-07T08:38:54.093868754Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: f56b0efda423f6e002c1e5ead4b676a05adf9a6db104c4676b7cf8f76d374977 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.4.tgz + version: 2.2.4 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.2-debian-12-r6 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-06-06T16:16:31.093182098Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 577d215adbe33bdd3f669d3c700ebbfb51fe1e419ee232ab9a62ba3e29a2c688 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.3.tgz + version: 2.2.3 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.2-debian-12-r5 + - name: git + image: docker.io/bitnami/git:2.45.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-06-06T11:41:48.67103553Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: d2d0fda1d2422821b7dd6e97aa4010b48859b0a75991afc251e67b315d08b775 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.2.tgz + version: 2.2.2 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.2-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-06-04T09:46:05.12749987Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 175821ea2b919db8409cb84819cc3530d49ab3eeb102c12bc2238db570fa3df9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.1.tgz + version: 2.2.1 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.2-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-30T07:48:00.214625209Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: a32434e51d375330a7f775319f0b306cfa5a882a069ee4e56dd76a9107ad1d9d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.2.0.tgz + version: 2.2.0 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.2-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-21T16:03:13.990622905Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 8f793e76a964162e5b1a4f16c599373d972ebbe7b6ab7ef6a1fd7e5324d55073 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.1.1.tgz + version: 2.1.1 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.2-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-21T12:52:54.991670597Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 603fc271f709ea408586be9ca3f1ddf5d441f6bbcfe003b651e6a2855ea14abf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.1.0.tgz + version: 2.1.0 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.2-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-21T07:07:16.653881922Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: f9d441e1ae7a22f5a8d15d10ab84fd342cf7ebf7cef052fae5e97d6dd97299d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.0.6.tgz + version: 2.0.6 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.2-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.45.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-18T03:51:38.265048746Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: dc44ab9027d5ef3e2621caf8fe8a631d77393dc278bee26650c8df095e960576 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.0.5.tgz + version: 2.0.5 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.2-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-04-24T02:33:34.459427591Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 2c3f8c1c4c8487a03de570eaaa136d6ed268f338ae9e611433a16763577e13c5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.0.4.tgz + version: 2.0.4 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.1-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-04-17T16:56:24.429655026Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: d0b9f491daf4a9330865b3ff71d83e2db31ce6d7a5d223fe93b3f4c30536373b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.0.3.tgz + version: 2.0.3 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.0-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-04-05T20:39:35.725087692Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: d52b89d2cfba737d3bd167f5b7bd3eb82636e14de70d242b61b478984e6bdc6b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.0.2.tgz + version: 2.0.2 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.0-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-03-11T12:18:40.516786482Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: f0a650dab2e4de783f9f45eb9e682eb173c0792b1a0a7769f9364c3cd4419ff0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.0.1.tgz + version: 2.0.1 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.0-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-03-11T12:07:52.536721801Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: c4ca80bbffd674a1859b8f42795712a013e703916447bb296b33e16ae67f709e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-2.0.0.tgz + version: 2.0.0 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.14.0-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-03-08T06:50:45.68264304Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 0d4f3458ec28367a7615cfc883a6994116bd95a7d4c21ba57bae786fbb11e416 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.8.2.tgz + version: 1.8.2 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.13.5-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2024-03-07T03:38:05.725678366Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 6927c8a1ec148c85b60ec56c95c7e094470f966b80a66e3f277b1d15287eac12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.8.1.tgz + version: 1.8.1 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.13.4-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2024-03-06T11:48:46.529646038Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 577ab96f633c2f74041c053c41798e99c88edf5052e65777879ecebf271d24a1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.8.0.tgz + version: 1.8.0 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.13.4-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2024-02-27T04:01:29.43622166Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: d05f3aa18566cea543db6f8225218fe90fe4659acfb495dcd7f9beeae374939a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.7.5.tgz + version: 1.7.5 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.13.3-debian-12-r0 + - name: git + image: docker.io/bitnami/git:2.44.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.3 + created: "2024-02-24T03:51:26.292203685Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 98df9b37c37678d97445ced4fd839c08561aa528aa78cc197f77875f5677e405 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.7.4.tgz + version: 1.7.4 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.13.2-debian-12-r4 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.2 + created: "2024-02-23T04:29:53.946324094Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: f9aecc3c2635221c38063532bd9150f54bbe54ac007df7167a77bce3f158f62e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.7.3.tgz + version: 1.7.3 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.13.2-debian-12-r3 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.2 + created: "2024-02-21T17:43:27.657002175Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 21678a2cad3b09ebb9faaf21821425645c5d62ae1355cf0d8997e9ba518cbd1e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.7.2.tgz + version: 1.7.2 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.13.2-debian-12-r2 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.2 + created: "2024-02-21T13:09:12.454814215Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: e652195b032a5427b1ce98ae8cdef74437a1ad5850083a3584ef5449d54ee672 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.7.1.tgz + version: 1.7.1 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.13.2-debian-11-r11 + - name: git + image: docker.io/bitnami/git:2.43.2-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r112 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.2 + created: "2024-02-16T17:34:49.43820418Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: b2c8e41277b17428b4be92a3c7bbb4900c24adb612554848de77d75145fa7de8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.6.1.tgz + version: 1.6.1 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.13.1-debian-11-r4 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.1 + created: "2024-02-14T10:56:03.741274224Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 48806b352f04c6b29f7d3723bd082a827e785454ea71343809eacc337282ee68 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.6.0.tgz + version: 1.6.0 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.13.1-debian-11-r4 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.1 + created: "2024-02-08T14:31:14.316634019Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 4a9c3b90b578b2010f76da0eef14ce7110e6baf9e5d31b965fc71d315db89de9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.5.3.tgz + version: 1.5.3 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.12.3-debian-11-r8 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.12.3 + created: "2024-01-30T02:16:36.370899812Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: d0ca58d23c7cc73a3e2a47444c017e4d3b735cc7984e69b4b6e66642f1fef8b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.5.2.tgz + version: 1.5.2 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.12.3-debian-11-r6 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.12.3 + created: "2024-01-19T09:30:16.425708758Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 30bba8c2ee5223f69a0a20d9e62bed1d29dfaf8fd9ef5a5d2f96ac33696eac51 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.5.0.tgz + version: 1.5.0 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.12.3-debian-11-r6 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.12.3 + created: "2024-01-18T12:13:53.053327101Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 76e56dcf4434aaa9aece45c130dfb8f2eeb99263c75444c38a8a8ea84d4e632a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.4.1.tgz + version: 1.4.1 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.12.3-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.12.3 + created: "2024-01-16T09:45:31.871092582Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: fb7f22710fbc1d66a32f4c93179f2e09fd9dface604afc0f99b6a74392f68908 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.4.0.tgz + version: 1.4.0 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.12.3-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.12.3 + created: "2024-01-15T12:05:05.066623019Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: c236fb6b213a0b64073cd098be9af8d7111514fe63bf58b8bbec8a48c509f838 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.3.6.tgz + version: 1.3.6 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.12.3-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.43.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.12.3 + created: "2023-11-21T18:21:33.984647341Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: f707d687f6aef35188110270920109e0a3ee24d64840fbf7ed3c081a818b1cc1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.3.5.tgz + version: 1.3.5 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.12.3-debian-11-r2 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.12.3 + created: "2023-11-16T06:47:05.517879431Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 481e044df3f5c764825699cf835325a621ab43d6ec31858c85310d6cecb6824f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.3.4.tgz + version: 1.3.4 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.12.3-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.12.3 + created: "2023-11-15T23:21:49.057656401Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 688cc55cd766fb21f78b2ebd2ef91c0dc113dd0a4c2c66455952ffbd83994cbb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.3.3.tgz + version: 1.3.3 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.12.3-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.12.3 + created: "2023-11-13T22:01:34.429267849Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 57f5465a0c14575c5f0c87a64fa86302b7f061e6070dcebb606cb0b61d9aa35c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.3.2.tgz + version: 1.3.2 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.12.2-debian-11-r1 + - name: git + image: docker.io/bitnami/git:2.42.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.12.2 + created: "2023-11-10T10:49:40.173361979Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 4d41c17b1bfd8f17923a3083fa57e1db8c9d7bf4ee07c5061dc8fa71d00f0972 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.3.1.tgz + version: 1.3.1 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.11.1-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.11.1 + created: "2023-11-06T22:00:32.190200106Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 72e0276f43ec8f0c641a0c176bb3ac5e4e9086d543b2c6274793ceea1a6c0dd8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.3.0.tgz + version: 1.3.0 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.11.1-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.11.1 + created: "2023-10-23T13:48:31.61277718Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: d5fe9edcf494e00bf07154f1e8be80d92a1704723c394c24722ec308fc3651a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.2.7.tgz + version: 1.2.7 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.3-debian-11-r24 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.3 + created: "2023-10-12T15:59:56.71903791Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 57dc8ed9f4d701f154186a04522f7b350ae96ab4c179295807954a41a66491b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.2.6.tgz + version: 1.2.6 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.3-debian-11-r19 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r41 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.3 + created: "2023-10-09T23:07:44.757379354Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 4a5321dbcd04837ce5c842405c065e4f298c3eb25f5c6215d68930adddd86796 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.2.5.tgz + version: 1.2.5 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.3-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r63 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.3 + created: "2023-10-09T12:30:30.83010197Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 2a719dfddd7df54dacb292e3f72d44583d5e3ea6f63b9d0917b758e8c04621e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.2.4.tgz + version: 1.2.4 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.3-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r63 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.3 + created: "2023-09-12T04:23:07.20838786Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 02357e002071acb6c9d5e9df51493a97463488a58f92eb46796ed8755d93c544 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.2.3.tgz + version: 1.2.3 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.2-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.2 + created: "2023-08-31T22:58:20.947702941Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 3da5fc3a991b049be2971f1a00ee60f80eda605117e78de641c026bc0b5d3863 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.2.1.tgz + version: 1.2.1 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.1-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.1 + created: "2023-08-29T07:53:01.646763226Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 445d7917ffdcb267f82151d8bd586ae14d7bf74875534fbf1d035a15a7b2d6d7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.2.0.tgz + version: 1.2.0 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.1-debian-11-r0 + - name: git + image: docker.io/bitnami/git:2.42.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.1 + created: "2023-08-22T13:48:08.78293801Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 044998a94b73c5dd832fc7e7a0c09e6985188a9b264fb7c36ded7f605cd43657 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.1.6.tgz + version: 1.1.6 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.0-debian-11-r31 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.0 + created: "2023-08-18T10:15:01.517858357Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: c2a10f465eb12f41b99827dc59020af18462e9db3aff6b8bc3a73a5c773f713b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.1.5.tgz + version: 1.1.5 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.0-debian-11-r31 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r74 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.0 + created: "2023-08-17T13:23:56.399923412Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 14042c9efd59c0c874960659c6a56782f8eb649307da02d4b302e01f338b3cff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.1.4.tgz + version: 1.1.4 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.0-debian-11-r29 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r71 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r37 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.0 + created: "2023-08-14T01:56:47.000186273Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 19b6eb775b66a7c11fe3f9dcc277923986144dc8cf0d74f656bc2ee4469cdcdb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.1.3.tgz + version: 1.1.3 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.0-debian-11-r28 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r69 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.0 + created: "2023-08-13T12:12:09.394137331Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 737934ccc2e23ad586fcbda416a6fbfa8adb5df684f3396b8f309d24537209df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.1.2.tgz + version: 1.1.2 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.0-debian-11-r19 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r64 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.0 + created: "2023-08-11T09:12:22.813110364Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 79ffbc53d6358e0c5bc55fb8026b9685aa8b08b59ef77cf4c24c5262e4d4bcb9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.1.1.tgz + version: 1.1.1 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.0-debian-11-r19 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r64 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.0 + created: "2023-08-09T15:54:37.58050449Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 8d24d46cc52890564aeb1b07cb59630359b8789dd565daf8733fe840d8091033 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.1.0.tgz + version: 1.1.0 + - annotations: + category: MachineLearning + images: | + - name: deepspeed + image: docker.io/bitnami/deepspeed:0.10.0-debian-11-r19 + - name: git + image: docker.io/bitnami/git:2.41.0-debian-11-r64 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.10.0 + created: "2023-08-08T11:34:17.968634673Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: 358a7b6cb6d961b7a1de7a9923d8458f5f358b36035a90e5ec7997d235af1227 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-1.0.0.tgz + version: 1.0.0 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.0.1 + created: "2023-08-07T12:10:13.571350088Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DeepSpeed is deep learning software suite for empowering ChatGPT-like + model training. Features dense or sparse model inference, high throughput and + high compression. + digest: b61d985b02630d53295357d2384b7605509b3fdcd73616ad92bd64cae210c647 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/deepspeed/img/deepspeed-stack-220x234.png + keywords: + - deepspeed + - pytorch + - python + - machine + - learning + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: deepspeed + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/deepspeed + - https://github.com/bitnami/charts/tree/main/bitnami/pytorch + urls: + - https://charts.bitnami.com/bitnami/deepspeed-0.1.0.tgz + version: 0.1.0 + discourse: + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.5-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.5 + created: "2024-07-30T11:38:35.039020489Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 918c9b5e4b817f013e8d3dbcbc589233f853db03ff4bc35fc98a84a2b0a5f77a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.15.tgz + version: 13.2.15 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.4 + created: "2024-07-25T08:39:12.212675663Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 1928e1984fb8769bfe84bc5034a05c07f2e1bd393a88e9b6f6bc510aa3487547 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.14.tgz + version: 13.2.14 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.4-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.4 + created: "2024-07-24T07:31:24.855959679Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 9317a76cabe6cd2ed27bd7105355abd08cf5206a55c07af400553889d603f961 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.13.tgz + version: 13.2.13 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.4 + created: "2024-07-18T08:32:54.771173171Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: ad8a78870fb46b28d54993d00a1067f8251cbe899e4ce113cdc847d0f13dbcbf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.12.tgz + version: 13.2.12 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.4 + created: "2024-07-16T11:41:17.718351351Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 65ae65f79b1eee9a7edb63da08915e72c2f5422beeb758ea35bdc63845e6428a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.11.tgz + version: 13.2.11 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.4 + created: "2024-07-15T17:09:24.66234858Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 38ef30cb406c2002bd8166892437f979386c6940d387a6507e78f3de552fbcfe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.10.tgz + version: 13.2.10 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.3 + created: "2024-07-08T10:32:59.691343642Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: bd8782869e1a92f1366ac346ac66c948f71d1efb8fc4363f152432c6eeece1b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.9.tgz + version: 13.2.9 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.3 + created: "2024-07-03T21:56:37.712439221Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 801cffed3faa88368e5e2af6e5f88e21073196702341eea91e9c8d29434fc80b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.8.tgz + version: 13.2.8 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-07-03T07:46:56.585972015Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: bc5527b1216b1bf3173a244776322cfafa99f566e1647eb2c0eea8b23c997042 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.7.tgz + version: 13.2.7 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-06-18T11:41:19.627994183Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 0138a275f5691022f4abe64fd3270fcc8c8d6a35e8eb4c58f74441952a420db9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.6.tgz + version: 13.2.6 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-06-17T12:27:35.994030654Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 70083eacf20d5ef4f53a025d1edd8b300a50c193319fb7a345ee98d8019d4552 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.5.tgz + version: 13.2.5 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-06-06T20:35:15.655825847Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: b616dd34e31bc9e6beb58d03a439d8a1cce971133a815eb3ec3d77bd2c424bd1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.4.tgz + version: 13.2.4 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-06-06T18:28:22.300397831Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 0812b80856f2dce216919a3cd6f8412580cd3bac7f072d1a99708c0a93ed9d1d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.3.tgz + version: 13.2.3 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-06-05T14:17:24.399431138Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: fa023784644a957fc38fcdd5ea6d9a06e6b9481ddb3475c9294f4fdd21d49576 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.2.tgz + version: 13.2.2 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-06-05T09:44:49.369831674Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 21acc7263569ff50a1307b8d40d3af9babb229d413205156018f8f572cf7aada + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.1.tgz + version: 13.2.1 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-05-30T07:46:57.504795589Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 2faef9fa9088949b4fff08c1ba5642921506b16332467ac560f2b840a554c0f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.2.0.tgz + version: 13.2.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-05-21T12:53:10.086833813Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: addecb3c562bf13a6bc2f60121be9a1bd2ba75d6a18bad0fb52232eb8ba97b3c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.1.0.tgz + version: 13.1.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-05-20T10:37:23.907251539Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 0d973471b3ea60ea149a08d0a28e43d845acea1d2d567a832c876c52ef4cda2d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.0.7.tgz + version: 13.0.7 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-05-18T00:35:04.586826124Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 3c0134ee437d298aa0cc7309942676d0d9c79c47a8c612350460a8497dedd6e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.0.6.tgz + version: 13.0.6 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2024-05-15T20:31:34.060035539Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 28615b7bd8d7bf551dd25633f4417b558169d5dabd8771380904764ec21a7268 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.0.5.tgz + version: 13.0.5 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.1-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.1 + created: "2024-05-14T05:16:44.609161667Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 8625efdfcb7079653f7c38b3c44e8b6e7918879f58d8542306e2ed35d55f142a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.0.4.tgz + version: 13.0.4 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.1-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.1 + created: "2024-04-26T06:07:00.917743032Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: c19ab4aa96e8ceb46373de9b5a216d7e7ac4a13313c0454c2eefb03e62930a66 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.0.3.tgz + version: 13.0.3 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.1 + created: "2024-04-15T13:34:53.034718821Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 4f66ef8af105f9afd1ba9fd073a5ed94d0779708cd967867d48d6b11a665e79c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.0.2.tgz + version: 13.0.2 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.1 + created: "2024-04-05T18:41:10.974551526Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 3439845f6b1321cb00f783dbbbd90a99d926abc0a8416cb2342a081dd5ca1d7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.0.1.tgz + version: 13.0.1 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.1 + created: "2024-04-04T14:28:49.589663454Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: fddd0b99af4841d5cbef7d80532b228dd12d5023eee34c76cdff7085f60064f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-13.0.0.tgz + version: 13.0.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.1 + created: "2024-03-22T12:07:11.574992287Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 088f8299614dae159dc3b73ed6f32f714592038b19ce06805ba251243b3f2ecf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.8.0.tgz + version: 12.8.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.1 + created: "2024-03-15T14:02:24.994753115Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 52f027d566f861b64dcd0072a268017ad3ae27f63772fe3d576659696b3d89a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.7.3.tgz + version: 12.7.3 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.0 + created: "2024-03-13T11:17:12.676714497Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 7ea66ed30dc074d6246b08d0f9659c118cf2761037301e4e8aa9688ea8768ca6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.7.2.tgz + version: 12.7.2 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.0 + created: "2024-03-08T16:26:27.132197104Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: b3d2b389964bb71b66446959dfb979ea86e239181517f1b55ed30950c074362d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.7.1.tgz + version: 12.7.1 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.0 + created: "2024-03-06T11:22:11.086341799Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: cded40d241dfcee4fc48b557e91d5e6c6454c520105e1d3837e3abb1326d6f10 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.7.0.tgz + version: 12.7.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.0 + created: "2024-02-22T15:36:01.176273781Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: c8fa748f12d195ca70d7b1c654623d9f944c36a309c3839c2fe54587b3573459 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.6.2.tgz + version: 12.6.2 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.0 + created: "2024-02-22T12:05:45.853471644Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: fd4b3b6d635ece754d49c611ba77cb8d80c0f76162adf4674d7240edf4c77fa5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.6.1.tgz + version: 12.6.1 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r106 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.0 + created: "2024-02-16T10:07:36.360678448Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 890fc9ac19f13d23b55e0ada1196673fef882c76f0723f9492e00e2f3015c786 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.5.0.tgz + version: 12.5.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r106 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.0 + created: "2024-02-15T12:49:07.818435547Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 3149728c46989e0c08db9b5c54fb46ca81c4ad7a66d780b085bff7ace1472028 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.4.2.tgz + version: 12.4.2 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2024-01-19T09:31:45.571078841Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 08d7ec8387e983f33b04078a49bca5826351071aaccc0888a951f318dadfae20 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.4.0.tgz + version: 12.4.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2024-01-16T16:26:09.311384468Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: ea0a16697a73ae4ef6a68fe23acc23366cbfa90e9b5d0249fc4da9ecfd63e3cc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.3.0.tgz + version: 12.3.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2024-01-15T08:18:46.963800355Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 4b7c6b18161e0eb4b40d3cec1b69d015b9c321dc46bf6da8daf0f7b2d09e6681 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.2.1.tgz + version: 12.2.1 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2024-01-10T15:01:36.391340935Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 85e82897a67a60af8cc1837aae14a399f3d70dda6ab1d9dbabbe10f9600f3df7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.2.0.tgz + version: 12.2.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2024-01-03T12:26:04.135893056Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 4e0ecf87680c08155fcd2e29137329b34c86302e54e4124ced14cf04e61903ab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.1.2.tgz + version: 12.1.2 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2023-12-31T18:24:30.510319295Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: bf5d832edda3c3e12d7db8a64ad61e65484911dea0da34b270e0d326c69393a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.1.1.tgz + version: 12.1.1 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2023-12-15T18:22:24.303902907Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 6f5335d81dccf5cb5e9d4e2a31ffb8a8423e61daae82384ee37657a34256ce26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.1.0.tgz + version: 12.1.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2023-11-21T20:27:02.6121027Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 26192452931f15f2c3281af5fda3b20c5e8f4736f1d67149386ce98dac92449b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.0.7.tgz + version: 12.0.7 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2023-11-09T10:13:43.126768619Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 43fddfde11c11a8bde40bd5e0c53173917568a0c74d131dfe9256a79157127f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.0.6.tgz + version: 12.0.6 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.2 + created: "2023-11-08T17:01:51.367385804Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: ed84a567682b5791697968062973a5330c85670fd1cfa86760e820f0272d4cc3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.0.5.tgz + version: 12.0.5 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.2 + created: "2023-11-02T22:25:47.807268901Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: cd2dbf26f0c7126b8bca4a7e0eab3e2ab6288c85f14f9b9cac8812f3c4f9f026 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.0.4.tgz + version: 12.0.4 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.2 + created: "2023-10-17T06:27:34.724247667Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 6053530507bb40f4e7d4d8d62d87128ad4768340499a5fef2f416fc614904a0c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.0.3.tgz + version: 12.0.3 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.1-debian-11-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-10-12T15:45:04.048016621Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 997a7fc21b2d1dfa5afba8344336d5c471c661f339b187c86f5c084706364c1b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.0.2.tgz + version: 12.0.2 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.1-debian-11-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-09-29T11:28:44.207697544Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 60d7a5070391a16ac9adf18f548d0fafabdbee8940c3945f7728be6ec289dfb9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-12.0.0.tgz + version: 12.0.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.1-debian-11-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-09-27T08:30:42.993176112Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 859e6ee4c6888874cfb56844761812a39fb13e8abb8b7153725a3c7d1e573646 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-11.0.5.tgz + version: 11.0.5 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r66 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-09-13T07:00:25.184002777Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 28ab36fe5d4fe837c7f16f4d0e64526b6c3f39534dc38afda6a33de9393503e4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-11.0.3.tgz + version: 11.0.3 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.1.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r63 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2023-09-15T11:14:56.372982969Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 922a4fecbe8252e392ac46f582a8ba98d83ec341d5f40474b68fa6c36bbdd486 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-11.0.2.tgz + version: 11.0.2 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.0.6-debian-11-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.6 + created: "2023-09-06T11:21:52.397401138Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 8cbd2c33bb900975a2ce28de99933e93df90bb65d65d1dbe1b9492771c862bbc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-11.0.1.tgz + version: 11.0.1 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.0.6-debian-11-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.6 + created: "2023-08-28T08:37:22.001356219Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: a1777dd8eb28f5ad52c26f0355c9b8a7f2f8a04c56d24cd73e78f53b23a7f7dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-11.0.0.tgz + version: 11.0.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.0.6-debian-11-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.6 + created: "2023-08-24T20:51:25.239388009Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 807fe8d5d6b13f519dd4f658a9622cd1719bb31278dd9900644294d44e8db20a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-10.4.0.tgz + version: 10.4.0 + - annotations: + category: Forum + images: | + - name: discourse + image: docker.io/bitnami/discourse:3.0.6-debian-11-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.6 + created: "2023-08-18T19:42:05.362619043Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 80ce5cc5f798ee7f49afc1e68bef534a743a45c0913718217c5eee18a7f994cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-10.3.8.tgz + version: 10.3.8 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.5 + created: "2023-07-26T08:25:25.528967162Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 34b15ea9a05aad5e501fe3cea20edc5f0fb4458f1f17ae562ad76fe402ddaa07 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-10.3.7.tgz + version: 10.3.7 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.5 + created: "2023-07-25T05:52:53.183244609Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: f4f0d4222e3f806a7ccfe166445eec416720f21842104d7f9d4b30d86c0065ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-10.3.6.tgz + version: 10.3.6 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.5 + created: "2023-07-21T11:16:08.222270742Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: f3f50d48578b6dd623596b49f0027fc4f4eb45c3fca49fb6c339f990d1168fbb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-10.3.5.tgz + version: 10.3.5 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.4 + created: "2023-06-23T17:10:42.679179408Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 04b78a701f023ddb72092e6c516ad87343f272c0b23b5134eb70b6639a145b06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-10.3.4.tgz + version: 10.3.4 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2023-06-27T08:04:06.038043213Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: f9f83568213d76bcb2c575e45a595cb94fba46f15c81388aa4e7813f927a2e9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-10.3.3.tgz + version: 10.3.3 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2023-05-21T21:42:19.419931006Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 23fea7dfe390d56963d8534c3109496c3b022974e08eda544a21aab2b4ffe8a1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-10.3.2.tgz + version: 10.3.2 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2023-05-10T06:22:26.708365443Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 9ebe1f1bf904408a158650ee736ddf79b5d808f4edcb0d4e4737a0e1290b9b62 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/discourse + urls: + - https://charts.bitnami.com/bitnami/discourse-10.3.1.tgz + version: 10.3.1 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2023-05-09T16:25:26.737037907Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: cd6141244c06b7c04914873ee74c82076e2f589c8c29a1989c78f9a26df5512e + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-10.2.1.tgz + version: 10.2.1 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2023-04-28T13:35:48.106458982Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.X.X + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 643899d1a0ebb1ac50ce6b2cd7b1a8f4af8e40cb9f41de91ad5dbf991610f765 + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-10.2.0.tgz + version: 10.2.0 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2023-04-03T16:32:52.241060586Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 0c9d4a50e36e01784aff07941dfcb315785fcc86aa3157c6d386d80322cd639e + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-10.0.5.tgz + version: 10.0.5 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.1 + created: "2023-03-01T10:45:57.664591576Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: e5b757a5d3cc34614ef84f78b521ed8402c828ede1d63a415d3cbafad4c9e7b9 + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-10.0.3.tgz + version: 10.0.3 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.1 + created: "2023-02-23T13:04:42.924384333Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: f8bd742712e98528634d0aa4eee09aa97928e7df3a9a1f4c7fcbb4cc687b0d16 + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-10.0.2.tgz + version: 10.0.2 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.1 + created: "2023-02-08T12:06:27.314247032Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 5b4f28a397698e764fb29fbc53f1d14bd333590bec5ccd82e00e330208c1d86f + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-10.0.0.tgz + version: 10.0.0 + - annotations: + category: Forum + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.13 + created: "2023-01-31T08:42:29.525789173Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: a16587b291d2a7a3a9ee58f4593c99f30cb7383d61d9043d7dad661da5a8edfe + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-9.0.9.tgz + version: 9.0.9 + - annotations: + category: Forum + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 2.8.13 + created: "2023-01-13T17:38:15.224610631Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: fe9b1f48b9d6bc9efc3a4d32bb2c4cad5a230ac4ae7b4acba11708373c226288 + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-9.0.8.tgz + version: 9.0.8 + - annotations: + category: Forum + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 2.8.13 + created: "2023-01-12T09:25:07.695640062Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 188b65535d94573c4c2242d16532d6f26e15e4dbd4546a4b365321724c795c98 + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-9.0.7.tgz + version: 9.0.7 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.13 + created: "2022-12-14T17:33:02.000568003Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 3c9e684a5acfa8ca9354a328012b012dc68387c25fd8d1dca97ea99439fce713 + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-9.0.6.tgz + version: 9.0.6 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.13 + created: "2022-12-12T17:48:51.46959243Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 57a1952184f3f63b836f8467f83102f2d9e857b428d2844c50e81a67704d92be + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-9.0.5.tgz + version: 9.0.5 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.11 + created: "2022-11-30T17:48:11.760945571Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 688201719f773c5991ab5721ddc829ac0a72c49c1e6cb0d94029396c67cd9f40 + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-9.0.4.tgz + version: 9.0.4 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.11 + created: "2022-11-29T15:39:16.525454133Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 169206a8e8b5c4f7c679eca8f101143882e7c460733a2d087fe0a63ae177837c + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-9.0.3.tgz + version: 9.0.3 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.11 + created: "2022-11-22T10:40:53.342252315Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 824ec62fac943e226480acbc108621fc63f3b6bfbae80e4e4f037edd6cbe8ba6 + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-9.0.2.tgz + version: 9.0.2 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.9 + created: "2022-11-21T13:25:37.016865703Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 4e72930e1cecda6bd27ea0aa24fa0dfbd44b28da01a844399aa48bed4d5ed14b + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-9.0.1.tgz + version: 9.0.1 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.9 + created: "2022-10-28T10:57:11.6166322Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 3e829f4b7def32f41dd0d2b491d9fbd9cff84c682c74127c7449a00cd7d5f77a + home: https://github.com/bitnami/charts/tree/main/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-9.0.0.tgz + version: 9.0.0 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.9 + created: "2022-10-05T08:26:31.773509024Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 370e50f08bca9493e169f5af460ac6ad73d55467e0f0dc05572130ba836a8648 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.1.8.tgz + version: 8.1.8 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.9 + created: "2022-09-30T13:56:16.813216091Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 9691b6962a9bf065daff1332780980cfc5dbedefa731b80d48fcba123c736d50 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.1.7.tgz + version: 8.1.7 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.8 + created: "2022-09-21T11:47:20.839810158Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 354e3b19138fbc8828bbb8ab5f6ef9eaaa4a7c9aa592fdc3d2e7ceaddbe8d64b + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.1.5.tgz + version: 8.1.5 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.8 + created: "2022-09-14T18:27:05.749738318Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: aa2fa91dfd99a38f8decfc6e9b78ce1dc6a9da74be5119e6595737425c42c17d + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.1.4.tgz + version: 8.1.4 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.8 + created: "2022-08-30T08:18:45.676752078Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: ddd9db29a9d235802c84fd2b3ac4184876634539133bed00bd230f0d407c4484 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.1.3.tgz + version: 8.1.3 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.8 + created: "2022-08-23T23:32:10.610048587Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: db6f53fd8f9b15e4a7f6b66981d2c70f05f859b5ad07a2a3d876ad62e961e55b + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.1.2.tgz + version: 8.1.2 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.8 + created: "2022-08-23T08:49:32.103101771Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 35519f531cfa352a62b0bff3008329db7c181dcd8dd2edca6e8329ab642bd02e + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.1.1.tgz + version: 8.1.1 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.8 + created: "2022-08-22T16:46:02.867032552Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 2d1daf70cb7410e6ca0354b45dd4d37a697d8536192ec0c8dcaf580f93857c91 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.1.0.tgz + version: 8.1.0 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.8 + created: "2022-08-18T03:05:04.650265896Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 622563714241db7ad3718caaec12c556b55030268ea62a82c2c2833383efa51d + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.0.9.tgz + version: 8.0.9 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.8 + created: "2022-08-11T04:25:38.430792677Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 3762419ff1a17dc296265687d39c4d89a97020daceb7d5c3a756b2741602ad10 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.0.8.tgz + version: 8.0.8 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.7 + created: "2022-08-09T10:24:37.551929319Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: c862ef766852d81d93708446c15bc5ace033f7a025899cd83b77547f95328db4 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.0.7.tgz + version: 8.0.7 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.7 + created: "2022-08-04T16:10:19.789384969Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 7e814ba6900c7ef129e0648767553c4190db23197fd31db795ae3afe0675c004 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.0.6.tgz + version: 8.0.6 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.7 + created: "2022-08-03T09:00:41.946469688Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: cf245e41ec33fe6a387e40827ab4bb72535c97b9321d61086e74e0c622488dbd + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.0.5.tgz + version: 8.0.5 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.7 + created: "2022-07-28T01:29:24.003700635Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 53e8a68cc268e0200c495f4f2185c9efa05f956156ac6cff407cffb6e63f716e + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.0.4.tgz + version: 8.0.4 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.6 + created: "2022-07-27T21:25:57.027484198Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 514938f7340dabad063c1a8f0eddaa0a09d860aef1261fd2771db26cccba8be1 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.0.3.tgz + version: 8.0.3 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.6 + created: "2022-07-16T18:52:45.776859842Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 8a90427d50d9ff333c7639627aec2194b792ea830f5466dd0667ac394ca7b390 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.0.1.tgz + version: 8.0.1 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.5 + created: "2022-07-13T16:37:26.404286108Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: e7ba3ef3d9e4e384bb3c32401f8f46080b557a174174574fe9c87f6cd82a2f29 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-8.0.0.tgz + version: 8.0.0 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.5 + created: "2022-07-13T01:41:53.982625466Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 4d77b78193a32be126a31d56c93a7f1f0ad1e7c60ca432df8c71ea106691aaf5 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.13.tgz + version: 7.3.13 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.5 + created: "2022-07-09T12:07:58.414036198Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 9cd3e1bcd96e99e2da49709d43a74eaa3b65205c64985cf0fd8443e1c7acf0e5 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.12.tgz + version: 7.3.12 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.5 + created: "2022-07-06T14:52:15.824865267Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 5a95b6b287a89bb062aa0651f0e58f2a9d53e4dd06168ff839868850bae04b6f + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.11.tgz + version: 7.3.11 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.5 + created: "2022-07-04T17:41:10.163913073Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 720091fa2330accb2a8e54ae7c03e8f027374c73605e54b5106ef12a965cf25d + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.10.tgz + version: 7.3.10 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.5 + created: "2022-07-01T09:18:03.842758964Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 608e6339e7720bc6511941a873464cafc7ab74db71b9b36294ab5274d844d313 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.9.tgz + version: 7.3.9 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.4 + created: "2022-06-30T10:36:46.515067878Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: 7f3d1764659b0dfa9daf7fcdc393a46615b472b33c67c79dec21fd8404bbe0ce + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.8.tgz + version: 7.3.8 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.4 + created: "2022-06-14T09:04:15.193061519Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: sha256:b63d78b3bac29d1705cff08cd7c2a18b55bb07472cb6ac85e386796c88825a38 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.7.tgz + version: 7.3.7 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.3 + created: "2022-06-13T13:14:40.291592347Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: sha256:e7fa6c8a996737ca5ed193d16c62aa85efe625852e80a379ee7e336ee4c78904 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.6.tgz + version: 7.3.6 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.3 + created: "2022-06-11T03:04:55.577666816Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: sha256:adf0711bd2bd6fa7917434af900863a4b29d7fdde8363306042a1121f5188151 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.5.tgz + version: 7.3.5 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.3 + created: "2022-06-08T12:35:48.011306202Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: sha256:6e12a7fb9b6a7111c00de0683c23e2a85d5902493a7d9dadd58d30eda834f087 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.4.tgz + version: 7.3.4 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.3 + created: "2022-06-06T15:56:52.585950503Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: sha256:7c00e6c307bd6778bed0011268f65e63f98d1b7d080a9338078d4cd2c1afc573 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.3.tgz + version: 7.3.3 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.3 + created: "2022-06-02T21:30:20.63641323Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: sha256:90c5af812f53f619b4ac3640bd19877d7d9512f45c1d3999d2e4d5796f27451b + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.2.tgz + version: 7.3.2 + - annotations: + category: Forum + apiVersion: v2 + appVersion: 2.8.3 + created: "2022-06-01T16:12:22.273705602Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.X.X + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.X.X + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Discourse is an open source discussion platform with built-in moderation + and governance systems that let discussion communities protect themselves from + bad actors even without official moderators. + digest: sha256:5e2ed366dd7f1e0e9eefb201711a49cc6deb202bc501aa9d6ee4326b710950e2 + home: https://github.com/bitnami/charts/tree/master/bitnami/discourse + icon: https://bitnami.com/assets/stacks/discourse/img/discourse-stack-220x234.png + keywords: + - community + - forum + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + - email: username.taken@gmail.com + name: paulczar + - email: preteluca@gmail.com + name: lucaprete + name: discourse + sources: + - https://github.com/bitnami/bitnami-docker-discourse + - https://github.com/spinnaker + - https://www.discourse.org/ + urls: + - https://charts.bitnami.com/bitnami/discourse-7.3.1.tgz + version: 7.3.1 + dokuwiki: + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-08-05T10:45:21.62739924Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + deprecated: true + description: DEPRECATED DokuWiki is a standards-compliant wiki optimized for creating + documentation. Designed to be simple to use for small organizations, it stores + all data in plain text files so no database is required. + digest: b9c98bb71255c266f03c62a5c83cdcd47e0ef016c5f03681c349d79be2dbad81 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.11.tgz + version: 16.2.11 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-07-25T04:29:03.605076687Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: b6781b7a645507612195ba449546d8813292e200dc151efa23c6c379454dc1a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.10.tgz + version: 16.2.10 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r5 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-07-24T09:32:47.043447267Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: fdb2b87d86e91cdbdff7e5f0bc18bbf687f35b63b8e11b628406ab4358a2b58c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.9.tgz + version: 16.2.9 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r4 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r22 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-07-24T07:12:10.615850576Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 5565f1b9352ea5a5fca26acf332f2da030815a97c209b158272818bc57f42cc7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.8.tgz + version: 16.2.8 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-07-16T11:40:05.624766502Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: e1534458983a56bf9fa8840d983edeacf0a706f09a34cc01ef229e7ae3a40b52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.7.tgz + version: 16.2.7 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-07-03T07:39:29.691732934Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: c26fa0584a4cdfb15e51a503f4345fad7f595e65ef2877f6482a4d2fe5a4ba2f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.6.tgz + version: 16.2.6 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-06-18T11:35:55.794896808Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 440356452ccdd70254c6af62a1c81608e0ba2a9f450bb920c1317e5c14446cda + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.5.tgz + version: 16.2.5 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-06-17T12:18:42.087785108Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: a72d2c47094d10bb55db6d119487edcdad281cd3f1d3dcc5fddf363d15f873e9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.4.tgz + version: 16.2.4 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-06-06T15:27:13.072065407Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: b225a1c464df55db5b79a52ef459827d565cac6165d50f6ca40128e6309ea1f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.3.tgz + version: 16.2.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-06-04T16:14:41.380428781Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 5a67675f03feb6a428f0ce42f6c307c1c33c3fab53444241467e0e80187a5fc1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.2.tgz + version: 16.2.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-06-04T09:45:36.343853786Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: b756ab90b11b0f8f44d61fd19694db36180c4a9ee1d42b7bfb3292a173dd7622 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.1.tgz + version: 16.2.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-05-27T09:13:39.547879502Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: d2096a5f99e991ba41db2eca755c4a4656c6089dd966df979045665d64fb4d84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.2.0.tgz + version: 16.2.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-05-21T14:19:07.309054026Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: e286d95375d2e149ecb3d95667760bd5a986b23738a96116ed613d16b28acfaa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.1.0.tgz + version: 16.1.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-05-20T09:38:30.208098965Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: bbe6c62b6751cd3e497f641ae62a12589fdd8e4855e2736c0b5ce71243282f91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.0.8.tgz + version: 16.0.8 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-05-18T00:35:17.939261671Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: d1a4a22f68c089ed48f2903a094116daf1d69e876519896412abce0833a1359b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.0.7.tgz + version: 16.0.7 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-05-13T20:44:18.192426557Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: a6e34ec62f645cf0caaec488f590fa995d071b8b39f793bdbcd22b1c2906f6cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.0.6.tgz + version: 16.0.6 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r7 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-05-13T13:55:24.66467941Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: d390ef8b7f1c792dd3ce0817f9cb373b3e4265e0c9fbe4123cb5ff89e1fb2add + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.0.5.tgz + version: 16.0.5 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r7 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-05-09T16:06:56.031765431Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 3cbc1edaf5e6efcbe68783d151869affe0d34d732303be8fb641df68ef3a7a81 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.0.4.tgz + version: 16.0.4 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r7 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-05-09T15:39:29.482352228Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 2d2ac08b3149e7c417c680c78f9c5f3d13167ff27e095025f8d08f2bcc1a43fd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.0.3.tgz + version: 16.0.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-04-08T23:51:23.192058228Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 61598faf5a836e4161a64bfbd433395108b713bc912704a59e7352942028c704 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.0.2.tgz + version: 16.0.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-04-05T23:21:51.742226215Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 9a34359068df5811d39218f391819bc288126d229dea70396ec4e9b580d8b244 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.0.1.tgz + version: 16.0.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-04-03T15:31:05.06772294Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 9e5fd0a84b911a14b1211cfca99340f3541ece96a334c1fe19664175e64774d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-16.0.0.tgz + version: 16.0.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20240206.1.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20240206.1.0 + created: "2024-03-07T09:45:20.342387786Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 35d304dece3415b3d5cf5c4059369e92a0f9c596df11d13d3c390961e8e0e505 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-15.0.0.tgz + version: 15.0.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-12-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-03-06T15:26:03.042796712Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 305a9af0eac4dc33a44bc929a92e4a41ee24a9c20eeee6068685698ac9463c78 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.8.1.tgz + version: 14.8.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-12-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-03-06T10:35:07.39043172Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 60da5fc459c192d9495846dfe51bb6fdf75625c33ecb41657f6068c4d387c221 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.8.0.tgz + version: 14.8.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-12-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-02-21T17:47:49.711624737Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: cb85cd5c5c66275ff856ac9f4212674fff09c2d692cb10e20bb9c9cdc2f85650 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.7.2.tgz + version: 14.7.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r6 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-12-r22 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-02-21T13:19:34.026878198Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: bba39c06598e4a81f07b6d6c7aca9afd91799eba8fd68e489d67249c00be62b9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.7.1.tgz + version: 14.7.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r2 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r111 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-02-20T12:33:27.907267584Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 6f91c9de23075cad0c6cf8d8cd8b42ba8c1d0fe60b62aab35aca8d9137fdb6bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.7.0.tgz + version: 14.7.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r2 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r111 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-02-07T14:40:30.923263364Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 6e56a276af9057f99480bb3749ced9d23ed243af4652e939efd958cc81a74446 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.5.5.tgz + version: 14.5.5 + - annotations: + category: Wiki + images: | + - d + - o + - k + - u + - w + - i + - k + - i + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-02-07T11:04:36.115008509Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 3eb980fe2c697662853401f9c2d2ee2a527eab584d683218a32c53847a675603 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.5.4.tgz + version: 14.5.4 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r109 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-02-02T17:05:43.224199092Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: c5fcb27f8f846c9af262c3710823c739a1bad3ef13265cc03844092cfa2044f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.5.3.tgz + version: 14.5.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r3 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r108 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-01-26T23:51:52.699740923Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 1aeb5e41935152f6098834975e8b30845b4765dae7d405b270375aa04d502ef1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.5.2.tgz + version: 14.5.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r106 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-01-22T15:44:34.947280856Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: fc06a44ea4a3534e58e3645745e2ff5d7484126ff328ca3819c3343a759dee8b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.5.0.tgz + version: 14.5.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r106 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-01-18T12:43:49.626611149Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 21dfdaf9e5b70a94f5ba7ddca76dff2373ea92835cff2aa411f07489d880db29 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.4.1.tgz + version: 14.4.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r106 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2024-01-16T15:39:36.546819824Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: ac73b4e685f965137b8e77d6ae2249b0fb89ae87d10a7d245e5cc04616cf603d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.4.0.tgz + version: 14.4.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r106 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-12-31T18:14:49.362395666Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: a8e55cd3b492cfd52004534e307b476f0bb7f5107900df60cddf543faa47cd88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.3.3.tgz + version: 14.3.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r102 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-11-21T18:17:32.060959687Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 00e591b1ddc059516d44281a0c47c03a4fd1822173e6d8a894ed0c6c875b1f26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.3.2.tgz + version: 14.3.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r102 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-11-08T17:49:16.908485103Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: dfc8c919b8f194767da61f3d947259abde159c274310f8c701f8646a23a05965 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.3.1.tgz + version: 14.3.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r102 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-10-31T15:29:34.351104389Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: ea4c1c0b6698f17185959c26f8faa8e60a9b85961f37d80088e593c0f6b87991 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.3.0.tgz + version: 14.3.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r102 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-10-12T15:08:11.951244332Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: f142267acfacc56a238de9f25e4bd47fff3069d53420c4ce357418d3aa10471d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.2.5.tgz + version: 14.2.5 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r100 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-10-09T23:06:49.457926311Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 6acb799040c2bbde2145a9c29aac1fdd4d531eb5b93df8668217b4040a62b921 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.2.4.tgz + version: 14.2.4 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r5 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r100 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-10-06T03:43:20.507486062Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 3e87527808731d07f39e222dc0d52b06e427812e80cd7ba7daabb362a935f987 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.2.3.tgz + version: 14.2.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r47 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r80 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r69 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-09-18T13:29:07.03691122Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 6e2ab790912f466a01a0daef7c9884a34d5b8b50c5329fff37ee2ed26ba4b74e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.2.2.tgz + version: 14.2.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r54 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-09-08T11:17:13.995827386Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 9fcbb845d1b5166a8635e28e1c20616fceddeb090dc353637c05d6a67f8338f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.2.1.tgz + version: 14.2.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r54 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-08-22T15:43:41.910479451Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: f8d3aa30b5461096b8ac7410f36e4b5f6b8f032ec7887761d5869c4ad30751c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.2.0.tgz + version: 14.2.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r54 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-08-19T12:46:19.678811408Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 327241ee0f096ac153c80598976eaa447c5276a4fa423680d8856cfba1dee78f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.1.9.tgz + version: 14.1.9 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r17 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r50 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-08-17T17:20:00.74548339Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 6590de9c9a52208019ae132c295937a6cf190e108bb67c1a882d2c09018863c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.1.8.tgz + version: 14.1.8 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r2 + - name: dokuwiki + image: docker.io/bitnami/dokuwiki:20230404.1.0-debian-11-r38 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-08-03T11:18:47.035069682Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 08a89195a7fd699bb310940e2e4f27ea3c03bdef8cd2c792a05100fe7a64b22a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.1.7.tgz + version: 14.1.7 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-07-25T12:26:13.249624475Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 946eb315639c5ee9514971e5131fa4da13f56b003ae189efd48ea02105db01a0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.1.6.tgz + version: 14.1.6 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-07-15T09:41:33.237655611Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 7c22bd4b63627f67c45940a8a1ca8dacc80b2f7494c968793daf70c45e0c466b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.1.5.tgz + version: 14.1.5 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-06-27T18:56:09.326986882Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 861d335748e1ac020e9ff97a3d5a934f0a431b61ba035a9772b772eca7e19507 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.1.4.tgz + version: 14.1.4 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-06-20T15:42:25.171441932Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 0b47633f825a78c3045c48dd10afb72d1d34809b8850e079f1d98b4b223fb94a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.1.3.tgz + version: 14.1.3 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-05-21T15:50:59.96078253Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 50f05191ed28ebfd2dcadcd36a397d1b2c91df0da661398e45c5104f166f76bb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.1.2.tgz + version: 14.1.2 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20230404.1.0 + created: "2023-05-17T08:49:20.559821646Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 37bfaf76b1f339e6c2cd067b802b0e2462d600bacb77d61987b5b03e6f64f9cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.1.1.tgz + version: 14.1.1 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2023.4.4 + created: "2023-05-09T15:43:17.873453629Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 2ee12bdf0620e3bbeaae1f2dec4e09c771371ff7810ad32db532a0cf192571ee + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.0.3.tgz + version: 14.0.3 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2023.4.4 + created: "2023-04-25T13:29:01.554882885Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 0d80bfde79b1bb4a26f11e9528cf7cd167073cbce53caf61688c2d750eacb91f + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.0.2.tgz + version: 14.0.2 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2023.4.4 + created: "2023-04-24T17:12:43.329263469Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: d971e814e32ca32e037cc5a14cf033d38a23676c0f285597ade574cc34c7c3eb + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.0.1.tgz + version: 14.0.1 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2023.4.4 + created: "2023-04-24T15:47:49.617472078Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 7193428a6897ba1762273f8da80834b75d9d628d4e532f6f77c734a00c8bd321 + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-14.0.0.tgz + version: 14.0.0 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-04-13T02:26:08.748721811Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: e9197353ebaa7684c6f9613267ace49a46eff842062786ede85c415a8596381a + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.21.tgz + version: 13.1.21 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-04-11T05:28:49.294704212Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 53fecc4c8a149891111562b92e3e1528c3621ef929e11e75de4a4a3dd47a7926 + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.20.tgz + version: 13.1.20 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-03-18T22:27:39.480524727Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 10698dd9ce9d4124087d49a5cd8cbc35717bb8647144a1725be1fcb730bf9b97 + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.19.tgz + version: 13.1.19 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-03-01T10:00:09.650083232Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 38896b46635fdf8fa364eb47283eb2dea23b04bfd5ccd59d6a653b029e2286ed + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.18.tgz + version: 13.1.18 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-02-23T11:56:06.892845909Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: de55503e4674b4f6b869d8461dfda722be644daae8ea980f96a2f59584abc31c + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.17.tgz + version: 13.1.17 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-02-17T15:21:13.173368217Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: ea135afe740b773915f3a6cffa06494f80a42fc86ea4dbeb27a47e355f2bdcfc + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.16.tgz + version: 13.1.16 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-02-13T19:51:00.811547242Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 7c131825c8d63ad1385dca578fc672104c3df9d66bb42e272d7af86aec9bd8a3 + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.15.tgz + version: 13.1.15 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-02-11T10:45:18.54026691Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 2ef707e4602b8a77c04fc25f0b498acf9651d9a81ccc871fe6a9c7d0a0d11d20 + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.14.tgz + version: 13.1.14 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-02-02T08:21:00.235739695Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 722c5a669b8d98ba11bcda18a7655e0404fbb5a7d02ecfabdcd8f310e64511f3 + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.13.tgz + version: 13.1.13 + - annotations: + category: Wiki + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-01-12T10:31:58.035840314Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 7f529aa573b22f97aa240bbd99cb38b4bdd4f5af36fc23e7d1dbfd6235bbbb70 + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.12.tgz + version: 13.1.12 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-01-10T20:19:53.828898277Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 13289f7abe3151675639bf8d530f6351ee27a69a76ffa30acc5c572f20d31c48 + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.11.tgz + version: 13.1.11 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2023-01-09T13:48:15.897622016Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: b6f8f59719caf48ab26edf06f857c8b4496256f4fdceca04ffcf946b093bd83e + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.10.tgz + version: 13.1.10 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2022-12-10T13:37:16.145214403Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: f00dada752e8590a1b661f259e89303e0b204fa2c06f6c470b55a0d56c0dee0b + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.9.tgz + version: 13.1.9 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2022-11-10T13:37:47.430846386Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: d4fcee8c41cea138864bdccd0971b86519296b269059acc161873c36b0b53ea9 + home: https://github.com/bitnami/charts/tree/main/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.8.tgz + version: 13.1.8 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2022-10-17T07:53:05.76433301Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 4be5c717bc4cb0965ca0cd98d380453c06853c515e47a6f1f466f70822bc07fc + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.7.tgz + version: 13.1.7 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2022-10-11T13:20:47.392831472Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: f87d5820ece73b7d69d70a879dc405c049625db8944d53959a1742e919df0741 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.6.tgz + version: 13.1.6 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2022-10-03T14:29:52.520544519Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: eecf5f1d64a75563163ea1a42ac584af25f0f0dd5141ce8bd91fb1c96c84b45e + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.5.tgz + version: 13.1.5 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20220731.1.0 + created: "2022-09-16T14:14:43.692880465Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: df5dc9a51e76391feeef2db8d4c65c733b4b360c8eb89825b0062ab4f19a0fa8 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.4.tgz + version: 13.1.4 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 2022.7.31 + created: "2022-09-13T01:17:15.898303667Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: a22fb9ed1edd6d5f3b1ec2df0b583e882c980c66c77b74e758b2a79915238fda + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.3.tgz + version: 13.1.3 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 2022.7.31 + created: "2022-09-08T17:11:53.549024093Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 23273b8691198bd82dd195a02ebda8cb604189694891047b47f5f74d9fede663 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.2.tgz + version: 13.1.2 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 2022.7.31 + created: "2022-08-23T22:03:54.824574542Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 6c1c62beef0ef05ca1dfce2e2dc1380644c957f82b86242700f234b22109d23d + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.1.tgz + version: 13.1.1 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 2022.7.31 + created: "2022-08-22T13:32:34.894013274Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 3aa1d801ad850445d57ec148346267683ed3b7707f042164d3d239c2969b9d81 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.1.0.tgz + version: 13.1.0 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 2022.7.31 + created: "2022-08-09T17:04:28.143303907Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 18b39d8582ce274e309c5b161cf692126c76e013045ea9706c9f678e58b41db4 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-13.0.0.tgz + version: 13.0.0 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20200729.0.0 + created: "2022-08-03T08:24:58.658120847Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 0525881266ca688f4faaf2493be51611ef70103b05824c36bc9fca296094d5e4 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-12.5.9.tgz + version: 12.5.9 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20200729.0.0 + created: "2022-07-10T08:37:16.154911796Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 498a4159cbe45b16cd8cce58003a19619cc29efa16b28d424633b8e8f3e6ecc2 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/bitnami-docker-dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-12.5.8.tgz + version: 12.5.8 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20200729.0.0 + created: "2022-06-30T17:06:03.835437529Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: 853d831448dc86304c827d655a128162283f678e95376348c7fb144f044c5750 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/bitnami-docker-dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-12.5.7.tgz + version: 12.5.7 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20200729.0.0 + created: "2022-06-27T16:59:49.236755933Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: sha256:7c8a0eaa320f24a9d1f2dc0fd9ea5f0049e9688ba4d3e7098ffca834e6d3905f + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/bitnami-docker-dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-12.5.6.tgz + version: 12.5.6 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20200729.0.0 + created: "2022-06-22T13:07:23.608195973Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: sha256:4e1f3c216d225b36de6c3c6bcb6eb19ec8e41fea6ee49467d63b6058f56c083e + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/bitnami-docker-dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-12.5.5.tgz + version: 12.5.5 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20200729.0.0 + created: "2022-06-10T15:15:27.40407318Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: sha256:4552103e204276f85ff6750d3eeb79f464bf2d82bcdad310a7f4dafdac8cd806 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/bitnami-docker-dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-12.5.4.tgz + version: 12.5.4 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20200729.0.0 + created: "2022-06-06T21:52:01.907815528Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: sha256:aa099f55225e0df74461a5c40a277fa6544e6e65f8d1c3c8b7b72a00baa75853 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/bitnami-docker-dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-12.5.3.tgz + version: 12.5.3 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 20200729.0.0 + created: "2022-06-01T19:20:52.406323288Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: DokuWiki is a standards-compliant wiki optimized for creating documentation. + Designed to be simple to use for small organizations, it stores all data in + plain text files so no database is required. + digest: sha256:23ab30bf530c3d7cc17c9dd5b6d2184f595c9499d9d3476bd6f95fb569dc9f24 + home: https://github.com/bitnami/charts/tree/master/bitnami/dokuwiki + icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-220x234.png + keywords: + - dokuwiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: dokuwiki + sources: + - https://github.com/bitnami/bitnami-docker-dokuwiki + - http://www.dokuwiki.org/ + urls: + - https://charts.bitnami.com/bitnami/dokuwiki-12.5.2.tgz + version: 12.5.2 + dremio: + - annotations: + category: Analytics + images: | + - name: dremio + image: docker.io/bitnami/dremio:25.0.0-debian-12-r9 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.0 + created: "2024-07-25T09:41:34.545059772Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Dremio is an open-source self-service data access tool that provides + high-performance queries for interactive analytics on data lakes. + digest: dcb6d8da9d272d1c06d39e30ea1b3c2b61b830c009e7b2e0364b938944c5d916 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dremio/img/dremio-stack-220x234.png + keywords: + - dremio + - data-lake + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dremio + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dremio + - https://github.com/bitnami/containers/tree/main/bitnami/dremio + - https://github.com/dremio/dremio-oss + urls: + - https://charts.bitnami.com/bitnami/dremio-0.1.9.tgz + version: 0.1.9 + - annotations: + category: Analytics + images: | + - name: dremio + image: docker.io/bitnami/dremio:25.0.0-debian-12-r8 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.0 + created: "2024-07-24T15:11:15.493604961Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Dremio is an open-source self-service data access tool that provides + high-performance queries for interactive analytics on data lakes. + digest: 148f58d4db01d3478a4b09991c8eff2c5a6ba9e10b763dbfe55b3dedb6cf08b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dremio/img/dremio-stack-220x234.png + keywords: + - dremio + - data-lake + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dremio + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dremio + - https://github.com/bitnami/containers/tree/main/bitnami/dremio + - https://github.com/dremio/dremio-oss + urls: + - https://charts.bitnami.com/bitnami/dremio-0.1.8.tgz + version: 0.1.8 + - annotations: + category: Analytics + images: | + - name: dremio + image: docker.io/bitnami/dremio:25.0.0-debian-12-r7 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.0 + created: "2024-07-24T04:26:52.94010787Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Dremio is an open-source self-service data access tool that provides + high-performance queries for interactive analytics on data lakes. + digest: adc4f451599ceba72147199de1afe51faff54b8e0a59ea9068e8d1f5a5f16f5d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dremio/img/dremio-stack-220x234.png + keywords: + - dremio + - data-lake + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dremio + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dremio + - https://github.com/bitnami/containers/tree/main/bitnami/dremio + - https://github.com/dremio/dremio-oss + urls: + - https://charts.bitnami.com/bitnami/dremio-0.1.7.tgz + version: 0.1.7 + - annotations: + category: Analytics + images: | + - name: dremio + image: docker.io/bitnami/dremio:25.0.0-debian-12-r5 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.0 + created: "2024-07-22T11:22:20.96162107Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Dremio is an open-source self-service data access tool that provides + high-performance queries for interactive analytics on data lakes. + digest: 922f5299d66552e76a8a439acc245da6228023231453da24b6d1ae87c3a4cfc3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dremio/img/dremio-stack-220x234.png + keywords: + - dremio + - data-lake + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dremio + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dremio + - https://github.com/bitnami/containers/tree/main/bitnami/dremio + - https://github.com/dremio/dremio-oss + urls: + - https://charts.bitnami.com/bitnami/dremio-0.1.6.tgz + version: 0.1.6 + - annotations: + category: Analytics + images: | + - name: dremio + image: docker.io/bitnami/dremio:25.0.0-debian-12-r5 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.0 + created: "2024-07-05T13:09:41.50989186Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Dremio is an open-source self-service data access tool that provides + high-performance queries for interactive analytics on data lakes. + digest: 43f91c5276a55980f12af17df657ad96952bfee44bc343615625dcf12aebffbf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dremio/img/dremio-stack-220x234.png + keywords: + - dremio + - data-lake + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dremio + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dremio + - https://github.com/bitnami/containers/tree/main/bitnami/dremio + - https://github.com/dremio/dremio-oss + urls: + - https://charts.bitnami.com/bitnami/dremio-0.1.5.tgz + version: 0.1.5 + - annotations: + category: Analytics + images: | + - name: dremio + image: docker.io/bitnami/dremio:25.0.0-debian-12-r3 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.0 + created: "2024-06-27T15:36:31.207444249Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Dremio is an open-source self-service data access tool that provides + high-performance queries for interactive analytics on data lakes. + digest: 04e3c48ca78ef50999e150646ea7cea71fa0ddb95a076533fd64bc8f3d2efa27 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dremio/img/dremio-stack-220x234.png + keywords: + - dremio + - data-lake + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dremio + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dremio + - https://github.com/bitnami/containers/tree/main/bitnami/dremio + - https://github.com/dremio/dremio-oss + urls: + - https://charts.bitnami.com/bitnami/dremio-0.1.4.tgz + version: 0.1.4 + - annotations: + category: Analytics + images: | + - name: dremio + image: docker.io/bitnami/dremio:25.0.0-debian-12-r2 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.0 + created: "2024-06-27T10:20:31.435090551Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Dremio is an open-source self-service data access tool that provides + high-performance queries for interactive analytics on data lakes. + digest: d54d16193a0c19275b38457abe373275792952b1cd0024f79be456a0487d5b2e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dremio/img/dremio-stack-220x234.png + keywords: + - dremio + - data-lake + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dremio + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dremio + - https://github.com/bitnami/containers/tree/main/bitnami/dremio + - https://github.com/dremio/dremio-oss + urls: + - https://charts.bitnami.com/bitnami/dremio-0.1.3.tgz + version: 0.1.3 + - annotations: + category: Analytics + images: | + - name: dremio + image: docker.io/bitnami/dremio:25.0.0-debian-12-r1 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.0 + created: "2024-06-27T08:55:58.358756057Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Dremio is an open-source self-service data access tool that provides + high-performance queries for interactive analytics on data lakes. + digest: fd9bb924ae8df59a74d4c6d363bd3b58865fcfa3f5bfc6e2c465bcad85347a03 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dremio/img/dremio-stack-220x234.png + keywords: + - dremio + - data-lake + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dremio + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dremio + - https://github.com/bitnami/containers/tree/main/bitnami/dremio + - https://github.com/dremio/dremio-oss + urls: + - https://charts.bitnami.com/bitnami/dremio-0.1.2.tgz + version: 0.1.2 + - annotations: + category: Analytics + images: | + - name: dremio + image: docker.io/bitnami/dremio:25.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.0 + created: "2024-06-25T13:18:49.279477935Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Dremio is an open-source self-service data access tool that provides + high-performance queries for interactive analytics on data lakes. + digest: 2ee4102136f3d10c4f77708095c87ef4eb4fbc6bafff0b500906f31809cd764c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dremio/img/dremio-stack-220x234.png + keywords: + - dremio + - data-lake + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dremio + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dremio + - https://github.com/bitnami/containers/tree/main/bitnami/dremio + - https://github.com/dremio/dremio-oss + urls: + - https://charts.bitnami.com/bitnami/dremio-0.1.1.tgz + version: 0.1.1 + - annotations: + category: Analytics + images: | + - name: dremio + image: docker.io/bitnami/dremio:25.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.0 + created: "2024-06-25T10:17:07.790384641Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Dremio is an open-source self-service data access tool that provides + high-performance queries for interactive analytics on data lakes. + digest: da38b819a65a19b240929b96249ec236fa9e1d631a2fe00ba33df2ffd89912ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/dremio/img/dremio-stack-220x234.png + keywords: + - dremio + - data-lake + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: dremio + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/dremio + - https://github.com/bitnami/containers/tree/main/bitnami/dremio + - https://github.com/dremio/dremio-oss + urls: + - https://charts.bitnami.com/bitnami/dremio-0.1.0.tgz + version: 0.1.0 + drupal: + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r7 + - name: drupal + image: docker.io/bitnami/drupal:11.0.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.1 + created: "2024-08-13T08:47:24.046289453Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: a49edf8091aa0cbe081ce69e4bd26f926c9f8d543c0eec3f5ccd924465836f79 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-20.0.0.tgz + version: 20.0.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r7 + - name: drupal + image: docker.io/bitnami/drupal:10.3.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.2 + created: "2024-08-08T13:21:16.692816798Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: eae8af32f03e11c62c62b493694a58c2c516ae57ae941c985f4d0ef5971f181e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-19.0.9.tgz + version: 19.0.9 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: drupal + image: docker.io/bitnami/drupal:10.3.1-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-08-02T18:51:16.276592059Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: e77b3fbc50f1e35aa6b8691e039fad405d4025cceaf6950d744e979b3db51484 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-19.0.8.tgz + version: 19.0.8 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: drupal + image: docker.io/bitnami/drupal:10.3.1-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-08-02T13:54:46.588543131Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 2fb1a01a95646a57061e6ba65541125eedf7172387cc8ea9888fcefc8d2afa3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-19.0.7.tgz + version: 19.0.7 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: drupal + image: docker.io/bitnami/drupal:10.3.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-07-30T18:34:32.173584628Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: a4030b3e66bc538b74c05a9847b2cbe8d31998d288589fa3242d722754f69100 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-19.0.6.tgz + version: 19.0.6 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: drupal + image: docker.io/bitnami/drupal:10.3.1-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-07-30T18:01:27.71058224Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: bdbbda91345343e2b881c604dbddca01ae30fa59d76da70fb4e402662bca1e31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-19.0.5.tgz + version: 19.0.5 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: drupal + image: docker.io/bitnami/drupal:10.3.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-07-25T08:20:34.515728096Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 9feb8fb9c7bba9c6ca22a46865e064b1965a11b7c7472ca3fa99c866ada210e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-19.0.4.tgz + version: 19.0.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r5 + - name: drupal + image: docker.io/bitnami/drupal:10.3.1-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-07-24T05:08:08.886619924Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 665aaf4de0b81b858c0e31a0d8b631069bd16a25c1b54fd0de7e77f201297907 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-19.0.3.tgz + version: 19.0.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r4 + - name: drupal + image: docker.io/bitnami/drupal:10.3.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-07-24T06:34:29.572930947Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 024d9ee06f8c136cef55405a6e7cde8324558314d83f147409b2222c5662b1f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-19.0.2.tgz + version: 19.0.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: drupal + image: docker.io/bitnami/drupal:10.3.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-07-16T11:39:52.309777315Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 8b1537c603ea2ad71a6229402b7776df1f6461ccbd35a28a3837e2b29b8db778 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-19.0.1.tgz + version: 19.0.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: drupal + image: docker.io/bitnami/drupal:10.3.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-07-12T12:17:47.628482199Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: fad8f3560cda2627540370f8651222a4410fb2d2a712da1462ce8cb4967116ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-19.0.0.tgz + version: 19.0.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: drupal + image: docker.io/bitnami/drupal:10.3.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-07-04T17:28:08.553817066Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 996d06d66af37fa0f01175028dc938ef33877da9d072645f533d07074c912a09 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.13.tgz + version: 18.21.13 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: drupal + image: docker.io/bitnami/drupal:10.3.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.0 + created: "2024-06-26T12:28:19.191006426Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 650608b5ba4b077e0b7a8b90a42dd50471dcdf1e50f6af2cdb0934f01832cf7e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.12.tgz + version: 18.21.12 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: drupal + image: docker.io/bitnami/drupal:10.3.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.0 + created: "2024-06-21T03:02:02.058418317Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: b860c31be0c144611924ed000e26215671ce426227e6ee7d522eeef46409c12d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.11.tgz + version: 18.21.11 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: drupal + image: docker.io/bitnami/drupal:10.2.7-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.7 + created: "2024-06-18T11:38:37.307800425Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: d0b0d6e0c9253da1ecc023f5d836e150ef727a45bf88ed136def182fe4515e56 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.10.tgz + version: 18.21.10 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: drupal + image: docker.io/bitnami/drupal:10.2.7-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.7 + created: "2024-06-17T12:22:34.957277185Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 2bf097791f0513188f19c8e05a175e3db2a306d7e9d257d3209cac64292c686f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.9.tgz + version: 18.21.9 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: drupal + image: docker.io/bitnami/drupal:10.2.7-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.7 + created: "2024-06-13T17:36:40.778116416Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: d4b57d3640479c8173cf01f70ccda83cc429ac53c90a4dfa821a71d9455c567f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.8.tgz + version: 18.21.8 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: drupal + image: docker.io/bitnami/drupal:10.2.7-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.7 + created: "2024-06-13T09:52:19.602575694Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: e41683d4ac9f75ea8b9706c3f420a7381c7483dc7c8331cb845d352ffa7eff17 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.7.tgz + version: 18.21.7 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: drupal + image: docker.io/bitnami/drupal:10.2.7-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.7 + created: "2024-06-13T08:58:45.669359653Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 4c4e84035b3159f4506eceeec2d122e8e462c5bec834f0213cc48724b534fe31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.6.tgz + version: 18.21.6 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: drupal + image: docker.io/bitnami/drupal:10.2.7-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.7 + created: "2024-06-06T15:29:26.705141776Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 2b4805b719e86b626699bef301748458809efd5791fc52c3dc286d47d8c8a1af + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.5.tgz + version: 18.21.5 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: drupal + image: docker.io/bitnami/drupal:10.2.7-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.7 + created: "2024-06-06T10:52:55.297391972Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 3199e6ed1157d7b70a5c4fb8a428f2bb661a5e01f18d00a6a08350590a91d72d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.4.tgz + version: 18.21.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.2.6-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.6 + created: "2024-06-05T09:44:40.03374832Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 33eede2277dc0f9b1f5a2ad11bb8bbee8911f73a5fdb2de6c679dde72e2a5735 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.2.tgz + version: 18.21.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.2.6-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.6 + created: "2024-06-04T16:13:54.097967593Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 4b903b7fc824894b50631c61ef2ac787644decf00799bc9872cf3e52a6a0a208 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.1.tgz + version: 18.21.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.2.6-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.6 + created: "2024-06-03T11:31:31.206303202Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 725d1941bd5a920a39130b8c0dab2fac7c52b283c9e1cda7e3d1fd232164f669 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.21.0.tgz + version: 18.21.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.2.6-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.6 + created: "2024-05-21T14:18:37.116569123Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 69f142ea889f905a9498ac6e56172c9a536295ed52303f01c0c8b407be94cdde + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.1.0.tgz + version: 18.1.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.2.6-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.6 + created: "2024-05-18T00:52:16.240372328Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 0894c900e49a74f26a1de39e107fdb528a9232dcb38c3499f6ce463c156aaf2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.0.7.tgz + version: 18.0.7 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.2.6-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.6 + created: "2024-05-17T06:20:37.530945026Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 4245e858325945d90b360ccffc8e307dc845f884cdefc5ce8ced98b6ed16c7ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.0.6.tgz + version: 18.0.6 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.2.6-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.6 + created: "2024-05-13T20:55:06.109112432Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: ea075070ecc31ff1a3f8f3746f1d8781225f5729b5b11d8da21b98becbae55ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.0.5.tgz + version: 18.0.5 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r4 + - name: drupal + image: docker.io/bitnami/drupal:10.2.6-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.6 + created: "2024-05-03T17:55:23.184479236Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: f7a8c089121cc85b7a7fdf662e5055f4d3b4f4d7043b78db7ccce4e5d08c81a0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.0.4.tgz + version: 18.0.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r4 + - name: drupal + image: docker.io/bitnami/drupal:10.2.6-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.6 + created: "2024-05-02T02:07:32.810213635Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: f504481faef06b7b3216eb6e98934c7625ba5464657984727b92054b601e83b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.0.3.tgz + version: 18.0.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: drupal + image: docker.io/bitnami/drupal:10.2.5-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.5 + created: "2024-04-05T23:46:22.647586281Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 128b0c06e579d3684cb3d171ea2be8fd9ff02014228558884f4c7d7dbb7af3f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.0.2.tgz + version: 18.0.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: drupal + image: docker.io/bitnami/drupal:10.2.5-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.5 + created: "2024-04-03T15:30:53.270760511Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: e1af67d6707acbaf21ee71eadf30090bf823be6e92f470a231d5abc8d7d25581 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.0.1.tgz + version: 18.0.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: drupal + image: docker.io/bitnami/drupal:10.2.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.4 + created: "2024-04-03T09:52:38.306321935Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: fdb9091274634d6ec6a96faa89ddfe279ce5f587223963d1fd45c43ef8b08326 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-18.0.0.tgz + version: 18.0.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: drupal + image: docker.io/bitnami/drupal:10.2.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.4 + created: "2024-04-02T10:35:14.26061029Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 413bec2d4db04bdccd9a712ff60f214af3d4beee8ee93fa6d7a0449a831fb7a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.6.5.tgz + version: 17.6.5 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r0 + - name: drupal + image: docker.io/bitnami/drupal:10.2.4-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.4 + created: "2024-03-20T19:14:23.550330783Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 4d9d2ffac403cce88d9420230ef929dd0ec51fff17fb174ed076f215ad89805f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.6.4.tgz + version: 17.6.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r0 + - name: drupal + image: docker.io/bitnami/drupal:10.2.4-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.4 + created: "2024-03-18T20:47:58.538367226Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 7485fa303bba5673748b0c0a56918516f4c1779311ff25ae2b8cbab0772fb7e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.6.3.tgz + version: 17.6.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.2.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.4 + created: "2024-03-09T17:05:33.492173711Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: fcc967f28f34b2ba4859b7495a558464a58101f47bf3be08334c337805201f9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.6.2.tgz + version: 17.6.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.2.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.4 + created: "2024-03-07T04:09:08.564833229Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 3c57327996060315dd89902760accaa156e20697deede4123f99036496ba338c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.6.1.tgz + version: 17.6.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: drupal + image: docker.io/bitnami/drupal:10.2.3-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.3 + created: "2024-03-06T10:37:39.306117626Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 82ae3f2c2cc637551c95fdeb0138bdbce354b23ac668cfc744e922b98baf339e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.6.0.tgz + version: 17.6.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: drupal + image: docker.io/bitnami/drupal:10.2.3-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.3 + created: "2024-02-21T17:49:32.388782313Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 44c2331c684ca1d7abb1509778bb80f1665a59b72f6419bc521711580ef1bc41 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.5.2.tgz + version: 17.5.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r6 + - name: drupal + image: docker.io/bitnami/drupal:10.2.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.3 + created: "2024-02-21T13:20:12.444163272Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 9710c49917e9db772ee973a33e41cbe97793806d292f6c0a65df01e1cf2e9b76 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.5.1.tgz + version: 17.5.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.3 + created: "2024-02-16T13:21:04.22604521Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 785da0c0a2eb9c3dddb63927cd2090c68dfeae4daaecc0fe91ae60044d035110 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.4.0.tgz + version: 17.4.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.3 + created: "2024-02-08T04:22:35.806829042Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: ca3c89d909369aea11db1070a8b726163524e43aeaa6a9ef2b28fa992b283bce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.3.4.tgz + version: 17.3.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: drupal + image: docker.io/bitnami/drupal:10.2.2-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.2 + created: "2024-02-02T16:25:31.480777363Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 11cf5c5493a3501f080df2bd3eae2a732d475aeca812192cfa2ab1285d8a3cc9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.3.3.tgz + version: 17.3.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r4 + - name: drupal + image: docker.io/bitnami/drupal:10.2.2-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.2 + created: "2024-01-30T11:13:46.965518731Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 9b5cf20b2b3cb04954db018dd9554f34cf770199e101c188828a0a88dde62d51 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.3.2.tgz + version: 17.3.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r3 + - name: drupal + image: docker.io/bitnami/drupal:10.2.2-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.2 + created: "2024-01-27T00:08:54.440627307Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 6f56fd283cc4fc61c8081c081e7dda72c42d22bc65ac7473cf1853264620a303 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.3.1.tgz + version: 17.3.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.2-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.2 + created: "2024-01-26T12:01:54.952145206Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: eeb85ac95717692e217993d195eff7ad969e0902ebb3784ca1aeeb66444f54ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.3.0.tgz + version: 17.3.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.2-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.2 + created: "2024-01-22T10:48:02.02205105Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 3e436c080392014f9eaad7d2e0aa116ba8f6c4db00c79563c1ae0d08cca5c513 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.2.0.tgz + version: 17.2.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.2-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.2 + created: "2024-01-18T22:48:05.461039942Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 40f57f8342e72b64480c54220eb0c2d7c77bb3067d13b02ca6b8e0f800f1768c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.1.3.tgz + version: 17.1.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.1 + created: "2024-01-18T21:51:28.101319943Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: b73628b7f06925a3231d40e615da3f950e5b64048115c5595b37c8c4c69a56a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.1.2.tgz + version: 17.1.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2024-01-16T09:37:45.169606747Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 36e5431d484fc2a90cfb312be9800f3ff0c21fe68240090a321946d825f98865 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.1.0.tgz + version: 17.1.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2024-01-14T13:10:53.223450335Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 816c399c5b7154ff29141a7c0e3916519c6379e74e10d83f8556a3e8ca07e0ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.0.1.tgz + version: 17.0.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-12-20T11:32:42.469064667Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 463875118f08b9f7d49c9fa4b42513057b22a41eb81b975310a22c275fd9b7c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-17.0.0.tgz + version: 17.0.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-12-20T08:31:16.140733461Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 669fe63bc59395c6902393d196225cfb1d14e051a95c03017a2d68ba5b556795 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.1.8.tgz + version: 16.1.8 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-12-19T20:59:29.555405703Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 1511f71d4d8e8542b4fb4cb0d16178f808ee79bf3d7db798bf1e329191ee88d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.1.7.tgz + version: 16.1.7 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.1.7-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.7 + created: "2023-12-08T02:09:23.014395569Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 91f4fda8b736f0e09f21b9aea8e785a07988b38c3fa632bf0b3ef11540abb92d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.1.6.tgz + version: 16.1.6 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: drupal + image: docker.io/bitnami/drupal:10.1.6-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.6 + created: "2023-11-26T02:35:02.336027917Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 728a68b9831103ad83b2c000eaa268e0a44e2ada6921b152a4f9a3f54d7bdbee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.1.5.tgz + version: 16.1.5 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: drupal + image: docker.io/bitnami/drupal:10.1.6-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.6 + created: "2023-11-21T18:15:16.661231732Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: f7e0834b09b9f794a008634c7653900b2fcbf21ad0f94c11706b3cf2a20df96d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.1.4.tgz + version: 16.1.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: drupal + image: docker.io/bitnami/drupal:10.1.6-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.6 + created: "2023-11-08T16:25:21.832771989Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 8101cc65b06b175abfb12534947b0c8058b7ecdd3b62041757cc0802f1c19eac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.1.3.tgz + version: 16.1.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: drupal + image: docker.io/bitnami/drupal:10.1.6-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.6 + created: "2023-11-03T16:14:44.403506068Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: d47866f298c9902e7001400f21e784f3ea396b7fa161366e94408cec08d860b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.1.2.tgz + version: 16.1.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: drupal + image: docker.io/bitnami/drupal:10.1.6-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.6 + created: "2023-11-03T14:34:41.762316317Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 35ebc7433d62c85a29baeace6cfd701cc2a1b2396844a2ae8d4a926618ac73fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.1.1.tgz + version: 16.1.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: drupal + image: docker.io/bitnami/drupal:10.1.5-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.5 + created: "2023-10-31T15:28:38.319591428Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 7a9f36830a90855cf44b8e76ac3990001782a1642778013966b50a5deb319c03 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.1.0.tgz + version: 16.1.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: drupal + image: docker.io/bitnami/drupal:10.1.5-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.5 + created: "2023-10-12T15:11:54.347183534Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: f3e37608203bedc416362ef316a074ee43a24cb3b99c00eb3d29bafce34c93c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.0.1.tgz + version: 16.0.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.1.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.5 + created: "2023-10-11T11:27:40.012739053Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 3373fc197bbf2a25d22159b44b13f5255f88a829d54f2e576e9b235d1604b4e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-16.0.0.tgz + version: 16.0.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: drupal + image: docker.io/bitnami/drupal:10.1.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.5 + created: "2023-10-09T23:39:29.869846699Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: d5d5a471ec3359037aca153bbb01280fe77a667829c026bb358f769bc2c79b95 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.1.8.tgz + version: 15.1.8 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r5 + - name: drupal + image: docker.io/bitnami/drupal:10.1.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.5 + created: "2023-10-06T04:06:38.291697243Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 8c26bcda35475a126b2b6fd6e8188677cc340ecd6d15558b997d3e99361cb633 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.1.7.tgz + version: 15.1.7 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r5 + - name: drupal + image: docker.io/bitnami/drupal:10.1.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.5 + created: "2023-10-05T03:33:06.242006308Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: f71687b5050ea6e87be3ccefc37f19dad562ceefe05332c0d7f34f82d2d73626 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.1.6.tgz + version: 15.1.6 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r56 + - name: drupal + image: docker.io/bitnami/drupal:10.1.4-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.4 + created: "2023-09-25T21:00:58.656979581Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: b8b8925f21bc866e67dbf6fe0c35358603fc1a668333e09d5fc030e90e3392c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.1.5.tgz + version: 15.1.5 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r50 + - name: drupal + image: docker.io/bitnami/drupal:10.1.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.4 + created: "2023-09-20T22:32:24.727554388Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 551f0edeaf1aa000813156173e4aa387be500dd1fb71fa5b57e447119a5b2623 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.1.4.tgz + version: 15.1.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r38 + - name: drupal + image: docker.io/bitnami/drupal:10.1.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.3 + created: "2023-09-07T21:07:05.642198431Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: c1f5f5a53e4ce4da73c91de46db4ef55e063b8ef855ab1df885267464d4ff1b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.1.3.tgz + version: 15.1.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r29 + - name: drupal + image: docker.io/bitnami/drupal:10.1.2-debian-11-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.2 + created: "2023-09-06T11:07:02.681468437Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: f24e6400bfacee240739f1399125ef5ab0a5cb85c5c4815c388b95ab73ba312d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.1.2.tgz + version: 15.1.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r29 + - name: drupal + image: docker.io/bitnami/drupal:10.1.2-debian-11-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.2 + created: "2023-08-30T04:53:55.198778576Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 840f462e37116cea4e2823ee610151ff1e372ea466bd96ff0c31a06fc24e22c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.1.1.tgz + version: 15.1.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: drupal + image: docker.io/bitnami/drupal:10.1.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.2 + created: "2023-08-24T14:17:06.233561882Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 053828248b97710a35d0b095efaa01ea9e00d5a9b59e449deb63e2d0987b02ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.1.0.tgz + version: 15.1.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: drupal + image: docker.io/bitnami/drupal:10.1.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.2 + created: "2023-08-19T13:37:52.010458291Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 86beab29e3ff82f7372628bb4f0572c737ba9955fcc1fa793a54b7e93f362d84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.0.4.tgz + version: 15.0.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r17 + - name: drupal + image: docker.io/bitnami/drupal:10.1.2-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.2 + created: "2023-08-17T17:02:06.799231283Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 17577438ba2d5959b75dacf072b1f707cf25cbd4cf5a21201bfd2e6aace31524 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.0.3.tgz + version: 15.0.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r2 + - name: drupal + image: docker.io/bitnami/drupal:10.1.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.2 + created: "2023-08-03T11:24:50.785373994Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: b4eab5306de05b5c94a94ae9333b03ab8f2a3fb2cdac0dd536b1fc6924319f1e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.0.2.tgz + version: 15.0.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.2 + created: "2023-08-02T15:32:18.420758916Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 50696618e3b46a32d98fae95be41bc287fde79bca6eeac9f5f3b0be898457e63 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.0.1.tgz + version: 15.0.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.1 + created: "2023-08-01T14:30:25.613373373Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 2366f8cd470246a82639fbf9dd78b82008b38301782070288c6771cd060c8e73 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-15.0.0.tgz + version: 15.0.0 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.1 + created: "2023-08-01T08:24:04.963438213Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 0a0bc8f7a80ce779cd89e021c57a60b336bf0d98bbdd9896af12f9c5b9640370 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-14.1.8.tgz + version: 14.1.8 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.1 + created: "2023-07-25T13:18:36.451463456Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: bf7def770323a77bce5b918643c5373568f8b1b71a6eadf4633b04a753597ad5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-14.1.7.tgz + version: 14.1.7 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.1 + created: "2023-07-13T14:58:00.48276796Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 9f9c21acb618aa95d3e4ea0743a781db5f0af9e5e8f61453defc855028e66a24 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-14.1.6.tgz + version: 14.1.6 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.9 + created: "2023-06-20T15:50:42.566045489Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: ba8dd95a4d81587d889958c48079886f12d56cae2141b3c405088a0ec708c208 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-14.1.5.tgz + version: 14.1.5 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.9 + created: "2023-05-21T15:51:17.445004872Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 5965b99e02f80b93463e5002be29d5293325456534d0dbbc1b3dc045e890810f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-14.1.4.tgz + version: 14.1.4 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.9 + created: "2023-05-17T09:29:21.271981331Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 76e5a0701dc4e0b1420c74ff1a047566b574ea428ff5d5bdc851757bf415d620 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-14.1.3.tgz + version: 14.1.3 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.9 + created: "2023-05-12T09:19:48.540585393Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 334c1fc04991b03a237bee17b5360ffe9ba99952a9a962f499e3247a6b81b2f4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-14.1.2.tgz + version: 14.1.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.9 + created: "2023-05-11T14:33:55.887001887Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 02e13f90f72a72c632d3a397a834056b0cc5b726cecdfaa541e85b6d3c66cc06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/drupal + urls: + - https://charts.bitnami.com/bitnami/drupal-14.1.1.tgz + version: 14.1.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.9 + created: "2023-05-09T12:29:17.402388128Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 4b538debd13769c7466fb95c65549ab87b8a5f04ff5bc37b5aa3c4dbe8c1f722 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-14.0.3.tgz + version: 14.0.3 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.9 + created: "2023-05-05T07:15:21.005774225Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 5e47628c7af72a69b6accbb14b79356bdee97e723b5e7fdeaff64e93e3c481d9 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-14.0.2.tgz + version: 14.0.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.8 + created: "2023-05-01T13:35:46.638112111Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: ed43935244d98a6cf5d6f5fb067f76807e9cbcb8b089fa8942da83daf14a3059 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-14.0.1.tgz + version: 14.0.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.7 + created: "2023-04-21T16:30:21.358799176Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 3b22c96afc3a445cf8ae1e072a10612f39ec6f6b925b2f361651857928ef22b5 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-14.0.0.tgz + version: 14.0.0 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.7 + created: "2023-04-01T13:43:51.25988601Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 48874f9ef8c61bd2fa945dd9d512455e005152b24a11890ab7c4337b707286f5 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.13.tgz + version: 13.0.13 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.7 + created: "2023-03-24T20:37:39.277913417Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 216249e599989d5c3a3fc6130cb79b6c1d042042419ccbe2af73f92071e390a4 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.12.tgz + version: 13.0.12 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.6 + created: "2023-03-24T17:20:11.558041919Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 36c03d9750ac06f8ee6d8f53852754d4d5cb67c049358b5664180c6c19a7bff2 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.11.tgz + version: 13.0.11 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.5 + created: "2023-03-18T22:51:44.155136859Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: a0fbae5037fccafcb6e44c85eb6ef728d9ba7c8ff099d953d426ffef625ebd4d + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.10.tgz + version: 13.0.10 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.4 + created: "2023-03-06T18:09:06.0735222Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 39e588b9fa0e6af961ae2eab0f0daaae6b0a90bdfd0e874c27d62aedbf9f714f + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.9.tgz + version: 13.0.9 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.4 + created: "2023-03-01T18:56:03.997305331Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 8fbefa7b6482c3ea838134eb5fc8d916ec7ca570a768cf5e8b55a1ce2e4c35f4 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.8.tgz + version: 13.0.8 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.3 + created: "2023-03-01T10:03:05.322111234Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: b3850e488ea9beb5fd208d2c841b2c4c22379c349e57681dd5778acbc0880bd8 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.7.tgz + version: 13.0.7 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.3 + created: "2023-02-23T12:14:17.533174752Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 65091c27e891d740193abb27f39302d3683ece518f62b7d67833cdeece2a8cec + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.6.tgz + version: 13.0.6 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.3 + created: "2023-02-21T08:56:01.670902737Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: da5c3c468c028cecc0d3f4fe5e7f400ee2fe667df195b863ceba69060ef07d3b + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.5.tgz + version: 13.0.5 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.3 + created: "2023-02-17T16:48:23.219338158Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 0345f2f247a30c180dd61fa6abc6b2113db923b4054721d6c5915e891df8b9af + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.4.tgz + version: 13.0.4 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.3 + created: "2023-02-14T16:14:48.782892842Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 8f3c3e383c3a01804f495b146c694447318d4364357ab7a81f00a6820ab23e06 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.3.tgz + version: 13.0.3 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.3 + created: "2023-02-01T23:45:47.765098039Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 850a94747460210ac54802d17deb8b9ec2568e79892c3518093fc8a723b0c154 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.2.tgz + version: 13.0.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.2 + created: "2023-01-20T15:35:18.246074498Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 48b6d1a1e2b66c9f78413c144af91c2f480e7c9206a7626917309d4f7e0259a2 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.1.tgz + version: 13.0.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.1 + created: "2023-01-19T10:48:18.566992247Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: a17cf694cc61ec7c06c10fc743e14276de51c53644920a744b3c747f39e8a2fc + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-13.0.0.tgz + version: 13.0.0 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.9 + created: "2023-01-09T04:22:28.448195534Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 45b8b73cc5f4f41586eb9cb5a8437edf2bb592ef32bfff153defbeb96afee4c6 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.13.tgz + version: 12.5.13 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.9 + created: "2022-12-10T04:13:16.568971451Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 0eeb992e9b726239b79c3b88483bc33852af5daf656e41a83c38c4b85ba74f74 + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.12.tgz + version: 12.5.12 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.8 + created: "2022-12-03T00:34:21.122451447Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: d948115843f53de3fb2d7e1e4c0792a6a2063ea76bd6eda1667a4047e722eaca + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.11.tgz + version: 12.5.11 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.8 + created: "2022-11-02T23:55:09.931193027Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 6a0815e81c1b17e0571c6329587e61512399b7682438e192f4a63871dcce3d7b + home: https://github.com/bitnami/charts/tree/main/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.10.tgz + version: 12.5.10 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.8 + created: "2022-10-17T09:06:44.752856108Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: ede294c1a5105dff38d0f37affa5d455c79264ed871c9e0b927246b06f96f786 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.9.tgz + version: 12.5.9 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.8 + created: "2022-10-08T08:41:41.91821991Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 5ad35cf71408586b7ce979507b5ab824f0536724b83c963fc94778ac4826d853 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.8.tgz + version: 12.5.8 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.8 + created: "2022-10-07T17:58:32.470728781Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: edcfc394d8d0d9ba4adc32044b14ac42ff87c8938b5c5b0e5f3d64bb416c2995 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.7.tgz + version: 12.5.7 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.8 + created: "2022-10-07T06:28:46.637716101Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 1b48678dca666c24b2f91229f1efa75a1f6ffa3ab4af56aab4edc8e28f1c5569 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.6.tgz + version: 12.5.6 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.7 + created: "2022-10-04T07:58:46.323305087Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 1546080128688c85a9ce1245cb35d00144fbf5de12fdcb61b3c39c686b0410bd + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.5.tgz + version: 12.5.5 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.7 + created: "2022-09-30T13:37:27.184035448Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 631d5749177fafd33012570e612aea2ae99165180446cd43cd96cfe1684c58b4 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.4.tgz + version: 12.5.4 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.6 + created: "2022-09-27T10:17:48.87448615Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: a52b663bb4692a9d398d205aa49982755a6be31812a8e2ec2b39d53a0a409d8e + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.2.tgz + version: 12.5.2 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.6 + created: "2022-09-26T16:34:16.038865008Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 3b6d070095d729656b0688dcf9ff063adc7e9a1e33c179351f6176b4f112d257 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.1.tgz + version: 12.5.1 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.6 + created: "2022-09-23T15:57:37.139339914Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 3b50d3d3c70af0f9cdf06e8c0d82901f486a15af176b842756f7155f19b667fd + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.5.0.tgz + version: 12.5.0 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.6 + created: "2022-09-21T11:09:26.846559161Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: d613afd3c1277b0650f64657692e3976160ad6195c8a4bcfa596662a4060ecad + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.4.6.tgz + version: 12.4.6 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.6 + created: "2022-09-20T18:27:10.432761431Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: 4b1990938b01d5ef4dcb1790bafe572796e826d7837121d5f7183846cde07d48 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.4.5.tgz + version: 12.4.5 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.5 + created: "2022-09-13T01:48:18.257118442Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:902492f1992c21e49a46a09bd3f6de46e063f2c8ba3c99d2ef5284a131061740 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.4.4.tgz + version: 12.4.4 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.5 + created: "2022-09-07T15:14:54.312583497Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:df1f767c86908ecede139d67e870f0439c48b458e5f571a8ebb8a9af8465022d + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.4.3.tgz + version: 12.4.3 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.5 + created: "2022-09-01T22:14:52.191836904Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:554a3027e1be8ab544b5d1b7b55a5733df89801bc843c954529cf2071f86fe07 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.4.2.tgz + version: 12.4.2 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.5 + created: "2022-08-24T01:00:09.791096447Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:041d7f90c3d6562406a3728c29411f2af076df9b4eaf88b18327a1a77cd76ada + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.4.1.tgz + version: 12.4.1 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.5 + created: "2022-08-22T20:27:23.259523763Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:6ff53930cd873557eb625629cc78a5931d29bd94a848e5146bb91aeb53806d72 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.4.0.tgz + version: 12.4.0 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.5 + created: "2022-08-11T01:50:47.441950719Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:72d342c74e25e278880add577a2bcf2dac978cff11c08b37bb4713545d91e3c4 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.3.5.tgz + version: 12.3.5 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.5 + created: "2022-08-09T15:42:48.40820708Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:4a284544695b66c38888e32f291ab52a174914d4b56b4c1ead266f6dd4f8bf34 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.3.4.tgz + version: 12.3.4 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.4 + created: "2022-08-02T11:02:23.284479861Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:5f5da33d56d7d1d240b642879d4bc651746be434f9f60d58867ea6179995f040 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.3.3.tgz + version: 12.3.3 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.4 + created: "2022-07-29T04:06:26.425043425Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:84522b87953baf70039aa03d0efe2fc82824b57ee398e16a8ded35cd592e2ee1 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.3.2.tgz + version: 12.3.2 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.3 + created: "2022-07-21T00:03:57.814443345Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:0f94fd35c1b6a91ef3ba976e7de8ac34d8054d3fbef4f8a013d847481ea3bfbf + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/bitnami-docker-drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.3.1.tgz + version: 12.3.1 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.2 + created: "2022-07-13T09:28:38.289817386Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:3c61f61f0bef149fa7a4713ca591be03c01c8565b21a38c7bcdeeedfea3f2a58 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/bitnami-docker-drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.3.0.tgz + version: 12.3.0 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.2 + created: "2022-07-12T04:57:40.017736461Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:843dbbfa9773bc4c788a662be51c561a4828e5ba6919e65f466836d87bacb893 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/bitnami-docker-drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.2.14.tgz + version: 12.2.14 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.2 + created: "2022-07-08T09:19:20.528209147Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:fb7aebf02c0f2c46ad1a8730ed995e167a03a14cfe992053252adf90fa2d73fb + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/bitnami-docker-drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.2.13.tgz + version: 12.2.13 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.4.1 + created: "2022-07-01T09:37:51.872649858Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:bca10928f3d8bfc755a6e0bde8229b267d8d475743435043ee75e748681b50a7 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/bitnami-docker-drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.2.12.tgz + version: 12.2.12 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.3.16 + created: "2022-06-14T21:06:25.365960539Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:aeb0c9f3e796aa36680e898c054489b123cb06b0b09cb7a41345fd15d8f9eb6f + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/bitnami-docker-drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.2.11.tgz + version: 12.2.11 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.3.16 + created: "2022-06-11T09:16:29.589675005Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:f6c81f474c90e2ab524258f178f9f9fa376d5853021af0b73a1ccb2111d8cc8a + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/bitnami-docker-drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.2.10.tgz + version: 12.2.10 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.3.15 + created: "2022-06-10T15:58:52.740924408Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:b7c7bdad20eb6063d25992aef1be9d0ecebeeeb2704cfb9470d848c9319f274b + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/bitnami-docker-drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.2.9.tgz + version: 12.2.9 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.3.15 + created: "2022-06-06T21:55:56.824931817Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:dbdd50dbbd55264f6a3a94e4f5c203b1dce2de1db75173a7f1e76c8090e9bd9c + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/bitnami-docker-drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.2.8.tgz + version: 12.2.8 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 9.3.15 + created: "2022-06-03T08:01:03.000136536Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Drupal is one of the most versatile open source content management + systems in the world. It is pre-configured with the Ctools and Views modules, + Drush and Let's Encrypt auto-configuration support. + digest: sha256:bdb008424dec81e46f44c2c6c726efe006b31dd88af84d8dd412cd0c01a83bb5 + home: https://github.com/bitnami/charts/tree/master/bitnami/drupal + icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png + keywords: + - drupal + - cms + - blog + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: drupal + sources: + - https://github.com/bitnami/bitnami-docker-drupal + - https://www.drupal.org/ + urls: + - https://charts.bitnami.com/bitnami/drupal-12.2.7.tgz + version: 12.2.7 + ejbca: + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.3.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.3.2 + created: "2024-08-02T16:30:11.869340901Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 751740202e7058d50b04df66100ee4d049141fbec25e9b262b118ee869088663 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-15.0.5.tgz + version: 15.0.5 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.3.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.3.1 + created: "2024-07-25T05:00:32.350304071Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: d45d21ea4cb061613a9bb1d712d5e148083b01b6bdfb484bdc7cf2018e820d0b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-15.0.4.tgz + version: 15.0.4 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.3.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.3.1 + created: "2024-07-24T05:34:20.837646542Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 0182a1dad22b7c34cb2ab6a9aeff37683e28de89bcd89c3c6773a8d80bd20692 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-15.0.3.tgz + version: 15.0.3 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.3.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.3.1 + created: "2024-07-23T22:43:03.726256983Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 0f252c7619f8173ad86389c24f3856bfc858bdac66fef74d7241079b0fde6acf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-15.0.2.tgz + version: 15.0.2 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.3.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.3.1 + created: "2024-07-18T08:49:03.619646402Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: adc15e0cba071b83be03c86bab9f4e1fee61d1b00627757717aedea2b3d132e4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-15.0.1.tgz + version: 15.0.1 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.3.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.3.1 + created: "2024-07-12T12:17:18.923215468Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 35d798819a56402482e41b92f7fd08e3be1b4420dbfc455aa220621f3415305c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-15.0.0.tgz + version: 15.0.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.3.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.3.1 + created: "2024-07-03T07:50:02.162575853Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 8e4c986ac8d58051ee388caefd9134b13fad5a78b077e58fc08a3df2913ee158 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.2.7.tgz + version: 14.2.7 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.3.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.3.1 + created: "2024-06-25T10:19:58.687772332Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 83db06e84d8ce62e559c8395c459289ad4f550c2c4c5affb54816e119c121d25 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.2.6.tgz + version: 14.2.6 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-06-18T11:47:37.966180688Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 2e8c762aeadbbdfd203f743eb87290730a78b5b85a4bb0009eb0ea832b8832c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.2.5.tgz + version: 14.2.5 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-06-17T12:28:13.164943319Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 424a117b7ed5764dde2a076a49676a91b650f88f723930e366dd7866c6275505 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.2.4.tgz + version: 14.2.4 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-06-07T17:31:18.94563357Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 4450a773f863c4cb07741a2695c901a3cbafe168433d173d1d400550b4215e4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.2.3.tgz + version: 14.2.3 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-06-05T14:18:37.081075051Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 0b5dabb4761626f6ee7b52ea8925c063d57ef9b0731744bce50dad027a936ac8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.2.2.tgz + version: 14.2.2 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-06-05T09:47:35.562245994Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 3cd2a5e336c07b049400818bc5fb428d58afcab3204f9d394a809395fc86c4b8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.2.1.tgz + version: 14.2.1 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-05-27T06:52:27.440468495Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 17614c18f0790b3f48dcd05f6936ebc055c4d57760f7197ccc0b743b0b1a8f46 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.2.0.tgz + version: 14.2.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-05-21T14:18:57.862537076Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 99bca3a5b68fdf9e21704eacc5bfbc6cda2440b9a784ca0f872bf7d99c89af4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.1.0.tgz + version: 14.1.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-05-20T07:48:51.309742349Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 1ce5a20f403b93bbd28b56a70fbfe5eb9e07a122bc7f65c1925ca113af5c73ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.0.5.tgz + version: 14.0.5 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-05-18T01:22:47.496427874Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: e27b2eec66eb0bb91d92513ef32988015ab752ced314b0a9244de727b8fa6205 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.0.4.tgz + version: 14.0.4 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-05-13T21:00:07.624417827Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 688b43747c7f1a74139eae4d0153cac556d9d40fad5dfc2b1f3eb6f1c0c9abda + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.0.3.tgz + version: 14.0.3 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-05-12T10:47:08.822582608Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 9dae50b5f808ab64f4d31a0bb52a40d1b34d4ec7e84fad053ebfb3981a529b0d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.0.2.tgz + version: 14.0.2 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-04-10T08:56:16.303298745Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 5ddfd07ccf897c28c50a9c5e600261f70486482dff11f5aa9104a362500d53ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.0.1.tgz + version: 14.0.1 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-04-02T16:04:23.53525299Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: a3ad22dfa033a9051c519641e152ccf737bd656052acc434a47a82b5f6decd8a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-14.0.0.tgz + version: 14.0.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-04-02T10:41:25.438919313Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 8a6f4796c01a6e3d1f1a88d2cbfdd7c79fa74efcaf726f5929957969ba8dd11f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-13.0.2.tgz + version: 13.0.2 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-04-01T18:03:00.049576801Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: f8e8c77904c9973935baeda881f3c315a10b8d1d2e7c62bf9c25f13bfaa06150 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-13.0.1.tgz + version: 13.0.1 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-03-27T17:44:16.449745193Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 17.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: e10a36544da6873111b5533127eccf6113acd2d752c4da13892f9627d179326f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-13.0.0.tgz + version: 13.0.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-03-06T10:51:53.049614982Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 16.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 7a98f20b11b357caf10ebf8b7fae6ca83a43159d16500e76852f184c2f375643 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-12.1.0.tgz + version: 12.1.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-03-01T16:44:24.98237751Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 16.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 6cedf892deaca6b14bc1c57e9e4c5a82100ebdfc2167d470067efe9d4dcbc158 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-12.0.0.tgz + version: 12.0.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-02-21T17:58:43.502905699Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 7c78b39332cacb248701bee442dd70773e3ffd9bd161e65bd8ba982845eb3d91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.4.2.tgz + version: 11.4.2 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-02-21T13:17:29.743186953Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 919f16c7ee5ac191882b414ccfcd76c8b2ea6bdad9d4054a5717f4348fa78ca1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.4.1.tgz + version: 11.4.1 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-02-16T10:07:30.864013795Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 88ce0b3c1b686d180baeb57630f5f8b2acfd1f304dadfdab56268568aa74b29e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.3.0.tgz + version: 11.3.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-02-02T16:33:56.352403165Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 294691fc27c3536211319dae67b955f4f9888856bd721054e28edca149db1dfd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.2.3.tgz + version: 11.2.3 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-01-27T01:00:29.302082599Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 5c811a0846916ced154704b0bbcfab679c38effab2b1053bde9e52ccdbe65554 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.2.2.tgz + version: 11.2.2 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-01-26T09:11:38.831970436Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: e16f306a9c6f26c233eb9635b702baf0e5162cec03b7acd5f9a066e2fc0b463d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.2.1.tgz + version: 11.2.1 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-01-22T15:44:25.578510805Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: ae77dcc501ebc55c53e6944d48c9bab9504b18978aaf0abbc7a1a790f5b7bc70 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.2.0.tgz + version: 11.2.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-01-18T14:32:20.5392344Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 7ef2dd347ca7d0a3f3af958360f30741b59249e5536325002af1cf068520d964 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.1.1.tgz + version: 11.1.1 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2024-01-16T15:30:01.096167188Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 22a012bcf0e27ecd28fecb33bf169b1ad02a6499f4364a7540f6082ca7c15629 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.1.0.tgz + version: 11.1.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0-1 + created: "2023-12-22T12:10:28.995725017Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: b397632c9a9c88fb865995e870ecc2965b1b21ba89bd39fb1ca80db4cf8607f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.0.1.tgz + version: 11.0.1 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-12-20T11:25:40.45776542Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 832379a1f5ceff37cc9e4281a707f40ac127543d9bd70f9d072970bd5b9aeac2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-11.0.0.tgz + version: 11.0.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-12-20T08:51:17.044544548Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: bb06b0409fa7398ec64d4e7520be624e4a33c3e7d8c35669c48287a599d10879 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-10.1.4.tgz + version: 10.1.4 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-12-12T20:15:28.700787356Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: e37a2516bf1a119142d8db65d17591d0156d92e75ebac1b8cfe499e9e948ee98 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-10.1.3.tgz + version: 10.1.3 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.0.0-debian-11-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2023-11-21T18:26:08.9506261Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 8669f9589629a3117ca90ede56e007830ec97f162d4856b299eb2189a14e66c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-10.1.2.tgz + version: 10.1.2 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.0.0-debian-11-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2023-11-08T17:48:48.523930615Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: d24121d6cd9d8b6c7f1d73b9f9d34d8df2b3c6462121c446ba27994ddb5f967d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-10.1.1.tgz + version: 10.1.1 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.0.0-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2023-10-31T15:29:26.20297396Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: e61dceff559d3474435cffa7e67274adfb030c5abd85b1b895ab5469af5b218d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-10.1.0.tgz + version: 10.1.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.0.0-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2023-10-11T08:50:45.980948136Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 1303ac6ea47d7002c213aee4662cbeec94c9a39dceb02521569392e4ff409d18 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-10.0.0.tgz + version: 10.0.0 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.0.0-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2023-10-10T10:49:41.705526312Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 5edf53fa9a9c40261c86f1b5909a9352d2de0823d7487545e7718097d9f60fa6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-9.0.5.tgz + version: 9.0.5 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.0.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2023-09-27T11:46:21.839989695Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: dab19461943caffaaedaa58c4e4b9808fa5705fa37ae0f9ba9e6ea330b89e3bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-9.0.4.tgz + version: 9.0.4 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.0.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.0 + created: "2023-09-27T10:12:01.13688973Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: ac349995585970684bdf2f61d55228bc6af8c9245c6f83f78a62bbb6739ac5c5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-9.0.3.tgz + version: 9.0.3 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.0.20230531-debian-11-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.20230531 + created: "2023-09-21T14:36:22.023522203Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 49d68fafc31bafe5c095212e15747abfd329a67464d8384f23cd80816567157c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-9.0.2.tgz + version: 9.0.2 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.0.20230531-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.20230531 + created: "2023-09-11T11:33:29.780993858Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: ef37c9584e33610347bbed7adf6b88aaa4e1c5cae3e823e6f0970de8f74f2df5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-9.0.1.tgz + version: 9.0.1 + - annotations: + category: CertificateAuthority + images: | + - name: ejbca + image: docker.io/bitnami/ejbca:8.0.20230531-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.0.20230531 + created: "2023-09-07T08:09:50.131758451Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 7b3c7c710a388f556e1c2727e42b193a4fa2b006ceaeb138e8ea96651996c007 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-9.0.0.tgz + version: 9.0.0 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-08-28T08:26:12.905945099Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: e78791074d73171b6a0f7c4bd4985fa336d772cc8577a9725723ba909213b21e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-8.1.0.tgz + version: 8.1.0 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-08-04T15:26:39.367163068Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 12fa2ff7bb52aa51351879c06416cfb13899b2f889e81964138fa2b790e159b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-8.0.0.tgz + version: 8.0.0 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-07-27T14:42:03.784856591Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: d1e015759463199602abbe7e6c55d454fa069f59e0563c71a831304c18b6d612 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-7.1.5.tgz + version: 7.1.5 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-07-15T10:03:49.355680447Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 7a0bac5f080662f06dd8526d761260cd5be68b5341f3feb2bc315cfd7997a15f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-7.1.4.tgz + version: 7.1.4 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-06-20T22:01:46.051284834Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 58c28eb772d5ce5fd51b4ff6973ac0fc1c95bb17b0670ef1633639a869ce4d12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-7.1.3.tgz + version: 7.1.3 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-05-22T08:31:12.808404857Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: e23e1b41e460c23e7ca014fe903288bf7170e9b1d016e02fcff93447e6010b7c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-7.1.2.tgz + version: 7.1.2 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-05-11T22:34:43.267269233Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 6170a519f994c501f8f1057b4532cb68693f5a00d97c8a6924dd33dd0b3fec85 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ejbca + urls: + - https://charts.bitnami.com/bitnami/ejbca-7.1.1.tgz + version: 7.1.1 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-05-09T15:32:29.4052805Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 4a7df1905d132ca13b44d340fcaab1ab0fd1c3b307efaaa653a648b31123a550 + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-7.0.2.tgz + version: 7.0.2 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-05-02T09:30:32.272860465Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: f65a2d55e64e4a5ae3bc90eda7913e6f3255b9e98f94796b862d04bbbacec4fa + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-7.0.1.tgz + version: 7.0.1 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-04-21T16:52:41.486572635Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ejbca-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: fbf5d9684ac67720acc75210d67c13d5d3702fee5f13af7b68b0cbb5e11356ba + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-7.0.0.tgz + version: 7.0.0 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-03-23T08:38:23.155597253Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 607616b41c8168692c3f65f5c144adc363fb01a52250682992914bc0b966b114 + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.16.tgz + version: 6.3.16 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-03-01T10:46:01.815764064Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: cff757e63fb44b49a69dc548c38e3d9a1f6dcfadc99b8bf55a6e44f1a416fbe2 + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.15.tgz + version: 6.3.15 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-02-20T09:32:12.149557832Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: ad4ced15b4375802c8e9d2993d42a8fe30c721eea16e03298cb48b000441f01f + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.14.tgz + version: 6.3.14 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-02-03T13:22:59.641904375Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 9d22d19142c79abdd23c2293f241825b10a7fe5115e068c39f3b4e9e7b9b36be + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.12.tgz + version: 6.3.12 + - annotations: + category: CertificateAuthority + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 7.11.0 + created: "2023-01-20T16:15:49.612586823Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: b84aa465d2d67b998b154e0eec13c77b6db1857a8049b36433bff06540113e56 + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.11.tgz + version: 6.3.11 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.10.0-2 + created: "2023-01-10T13:38:23.127788172Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 50bc3608fec420b15bae3495ed838fa9972f03bdb45d7e8fc2a28cadf91f4c5b + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.10.tgz + version: 6.3.10 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.10.0-2 + created: "2022-12-12T10:32:31.513418606Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 05823a76c5291ffb113987cc4e5a95b404161b9314aed6d6572cf2ec35205790 + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.9.tgz + version: 6.3.9 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.10.0-2 + created: "2022-11-11T10:31:22.901428171Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: eef6be5d9bca092d51a827ce9072c7c5fad1a3947af136e90d9dbcaf6ad74da7 + home: https://github.com/bitnami/charts/tree/main/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.8.tgz + version: 6.3.8 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-10-08T03:31:45.265339774Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 96ff5b52bc02c32f7a2bac9c861ade94cf54a271210ee9b9e7e8a90061a5fdd6 + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.6.tgz + version: 6.3.6 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-10-04T17:01:04.082122033Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: 0ac854673e6006dfc73ed8bf04ce177ea8501d1b98e7b8ae22c04648cb2d5a93 + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.5.tgz + version: 6.3.5 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-09-21T13:13:55.973411102Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:699aefc21b3c182c707d3f331d5a9785270c0cb0e89ec1a2c17ce64f575a12f9 + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.4.tgz + version: 6.3.4 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-09-08T05:39:07.583177402Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:0336a95eafc0d11c465019f1f971972b44a6035e87ffc16c5875ce849b7d828f + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.3.tgz + version: 6.3.3 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-08-24T00:57:08.798951044Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:bcd19a598b382c63c2044e3ca961a87c02da5e2003dc2c45379b93572c12c463 + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.2.tgz + version: 6.3.2 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-08-23T00:51:07.030731449Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:abf94c817c32be06e73418ddaec8660f8974bc671d41b9f37bfa71a062ceefa8 + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.3.1.tgz + version: 6.3.1 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-08-09T05:21:59.682683332Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:375600a22ea479a8cbc089bf4cb32e6f512fe30ecc4eb9de534a4a4eb32af7e3 + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.2.14.tgz + version: 6.2.14 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-08-06T09:39:02.627827302Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:e86a99ac9dc66b4bcd2cca9b50fadf6055d0d88eb4789e6b69f9ce8ad4ace756 + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.2.13.tgz + version: 6.2.13 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-08-03T12:02:44.889646949Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:4a2e9f068bc02121a6b7b1b695da478a1cac158fb193181e5679ac7cd50a7b4f + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.2.12.tgz + version: 6.2.12 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-08-02T10:05:19.381339461Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:e35871262fc171f9e22c92cef2ff16a582f21b72733096da50c156877587b145 + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.2.11.tgz + version: 6.2.11 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.9.0-2 + created: "2022-07-25T11:51:48.317635894Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:61c4ee9324854b37062a14956a0d047c2d2c3443fbc84e166b01850cac1ae687 + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/bitnami-docker-ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.2.10.tgz + version: 6.2.10 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.4.3-2 + created: "2022-07-01T10:31:20.324037486Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:043df0c786d91fe18a284a81f416fe4ded59370e6817a4c40074faf539c975ac + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/bitnami-docker-ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.2.9.tgz + version: 6.2.9 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.4.3-2 + created: "2022-06-23T05:48:31.547569288Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:252504675fd74ea99c487bcaf854bbf596242195a3cb348d043b83ed290be03f + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/bitnami-docker-ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.2.8.tgz + version: 6.2.8 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.4.3-2 + created: "2022-06-08T09:52:43.51432512Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:90578cae8f519138831452bcb3038dd8cd693941910cdfd26985068ed2f9acc6 + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/bitnami-docker-ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.2.7.tgz + version: 6.2.7 + - annotations: + category: CertificateAuthority + apiVersion: v2 + appVersion: 7.4.3-2 + created: "2022-06-01T18:00:58.242952451Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ejbca-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: EJBCA is an enterprise class PKI Certificate Authority software, + built using Java (JEE) technology. + digest: sha256:c1fdecfa95466604cd0481229c0d96cd353332880fa49a3a98e1840fb7f5624d + home: https://github.com/bitnami/charts/tree/master/bitnami/ejbca + icon: https://bitnami.com/assets/stacks/ejbca/img/ejbca-stack-220x234.png + keywords: + - ejbca + - ca + - pki + - certificate + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ejbca + sources: + - https://github.com/bitnami/bitnami-docker-ejbca + - https://www.ejbca.org/ + urls: + - https://charts.bitnami.com/bitnami/ejbca-6.2.6.tgz + version: 6.2.6 + elasticsearch: + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.15.0-debian-12-r1 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r33 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.15.0 + created: "2024-08-13T18:16:36.604466295Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 54d0ae6d32ca5f24a23567243d21c8ec54f2a12b6df8090eb3747bb3d072a9fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.3.8.tgz + version: 21.3.8 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.15.0-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r33 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.15.0 + created: "2024-08-13T16:31:25.763144058Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 5e4c44917f6dcddb9b04a4bddfcd71662f3094b4920af8e5d63c85bd5ab3e2d9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.3.7.tgz + version: 21.3.7 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.3-debian-12-r4 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r31 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-25T04:52:09.785865516Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 6fa5c62538773d42517d1c84ecd2281ddc481c633fb7562d314569ae3f0204ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.3.6.tgz + version: 21.3.6 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.3-debian-12-r3 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r31 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-24T05:43:30.555649643Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b887426904de6e94e11d89e9df706936dd9f6a36095a53524fe8533017c8fbbc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.3.5.tgz + version: 21.3.5 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.3-debian-12-r2 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r30 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-23T22:33:56.14709928Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: d5992a49db4c8ebbd792588495548d42e1c97e18cd27507bf0cd14d783c15df9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.3.4.tgz + version: 21.3.4 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.3-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-23T07:14:53.848854799Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: d01285ab6c96c697fcb289651e6f0d19e8918df51a44a37584abed26b9f44753 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.3.3.tgz + version: 21.3.3 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.3-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-18T08:48:50.354821679Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: e7f1841460c6ae66cbd9c4c12f6d1c969c28febdc6d84f162409d61039383602 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.3.2.tgz + version: 21.3.2 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.3-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-11T16:28:57.719167672Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 204607df5ca93f69437dcf96fd9251b08c73ba070f63644f7723509039b69beb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.3.1.tgz + version: 21.3.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.2 + created: "2024-07-11T09:15:11.982949241Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 94a1bd3732fdbd1a88b9124ca1229e5f31dd60510099174fb12dd4316bedd69a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.3.0.tgz + version: 21.3.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.2 + created: "2024-07-04T21:31:03.975032365Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 9727ac37f664dad27385bd00731fe875a1cf395580ebcf98f9e883aa132cef2b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.2.8.tgz + version: 21.2.8 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.1-debian-12-r1 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r28 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-07-03T08:04:20.822482823Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: f4a66780c935a64e2b2b0cb46dea5d575fbaa2559e6885e7e9e9ad7ee49ee416 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.2.7.tgz + version: 21.2.7 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.1-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-06-24T12:55:35.833133821Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b4eb66c43663b4ba556f9306683fecb135a586b9e43bca59bf71e311b76441fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.2.6.tgz + version: 21.2.6 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.1-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-06-18T11:46:43.438373243Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: bba1f5ad7e72e499f40b64008951b57637bd055f1e70400d66b6c07ec28b1034 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.2.5.tgz + version: 21.2.5 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.1-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-06-17T12:33:06.106443149Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 97ba0a2a0ef3d799d9491b5a24abdc2f39c76e9468cdee7c5493fddaca958c32 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.2.4.tgz + version: 21.2.4 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.1-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-06-12T20:07:37.385532629Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 27a770f67f31278e214956ce2d4f1c5aeceed430fe6df1e66e0bc537d5efca62 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.2.3.tgz + version: 21.2.3 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.0-debian-12-r1 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-12T13:14:59.327514097Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 9ad0360d0c8a7172bc0f42eeff25c63b0a22813c17b7be41e4b7af5c572a9bac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.2.2.tgz + version: 21.2.2 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.0-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-06T15:48:27.630678805Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 7544068bd222b50245e19bd941c6c12ffae8ae7283a487c5452b6ed4bf08b096 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.2.1.tgz + version: 21.2.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.0-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-06T07:23:36.517042768Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 2a3155e2615d9fd1bd519e0814e3107fbd52b5893fdc286cd5b0308467f073f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.2.0.tgz + version: 21.2.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.14.0-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-05T18:50:09.130418344Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b4cf29d4b0cf27017a8f9bd265cc5b1cda81bccac1d8ec223d06ba919fc6682a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.1.3.tgz + version: 21.1.3 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.4-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r25 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-06-05T09:44:57.845354722Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 79f09f2046f2c305441a447a3df80b04e17397e0042cc0fd63123a2905316f45 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.1.1.tgz + version: 21.1.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.4-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r25 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-21T14:20:10.12231176Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 4eb4bf57093ea91a5ceefeccadc9113cde48fc30f0486e2e014252e7d5aa8303 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.1.0.tgz + version: 21.1.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.4-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r25 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-20T16:30:31.603648439Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: fc16de7718454e51c206f047c3b04284fdeb599be6a36fa7e0a0507ac2f76c82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.0.7.tgz + version: 21.0.7 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.4-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r25 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-18T01:17:19.894908014Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b2778193965b7abbb0371583f38f968a9eb1113260e01a1db821538af372a53a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.0.6.tgz + version: 21.0.6 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.4-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-16T07:02:33.130912494Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 9d53cdbf9dcb92a97b6e63fabc1ace162b73131ec9bf6061a1064f370413911c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.0.5.tgz + version: 21.0.5 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.4-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-14T13:05:29.129901315Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: af720a99bc26d7131b442f6fb424cc0b76f787201d0698debeff02cf8be5f6bc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.0.4.tgz + version: 21.0.4 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.3-debian-12-r3 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.3 + created: "2024-05-13T21:10:32.146659919Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: f45bff03e856e0a75cb6c8e02322cb904b92784049cb7b0748a2fce36b8c7612 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.0.3.tgz + version: 21.0.3 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.3-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.3 + created: "2024-05-03T14:12:04.361124487Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: ccbeb649cdf07a974968b26a00d8f897193b04349c57d8ac15b76c1eff6f1bd7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.0.2.tgz + version: 21.0.2 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.2-debian-12-r2 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.2 + created: "2024-04-18T18:10:16.181920799Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 9cb561bd9b63e772133086fde36eaa09a76c568faa87e0adff5404a33298b836 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.0.1.tgz + version: 21.0.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.2 + created: "2024-04-18T16:14:48.889276315Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: aac1e8200149af5dab29e0e522a2878bd9a6c92e51d82e8b0c004594ab249343 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-21.0.0.tgz + version: 21.0.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.2 + created: "2024-04-08T23:51:04.530719134Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 3367cd98a0d62ecfdad8c7139a29764d92572ccb09bdba07b8d66715bd6a14f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-20.0.4.tgz + version: 20.0.4 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.1-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.1 + created: "2024-04-05T12:13:12.862201105Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 26eea0d8560d5553be774896b40467d73cf12b308e39d9a720bd9d8d908a825d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-20.0.3.tgz + version: 20.0.3 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.0-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.0 + created: "2024-04-02T15:30:46.311176383Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: e6027eeb9f2808e9eee540718b4c04d00085d2b3e03928c3cdbe0563a869157c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-20.0.2.tgz + version: 20.0.2 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.13.0-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.0 + created: "2024-03-26T20:24:53.407036589Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 0ce50908898d9e1352b9796814b055e90022294eb8e3767ad3982b1d6ca221cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-20.0.1.tgz + version: 20.0.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-15T11:05:25.320345018Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: deacf30327d5458470dfdb57eefc5757c1ceec5ef9ec706db9223687fcfabc4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-20.0.0.tgz + version: 20.0.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-11T10:06:55.054454585Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 7e3cc8e348939414caa699c37d090934c01d3fefa96a9b4b70d3f8cc322a62b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.21.2.tgz + version: 19.21.2 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-07T16:20:36.962037781Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 2f53eb03f650c5fb89d8d3afc2b07ba7d59ec84c242c7022b3ca67337955374e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.21.1.tgz + version: 19.21.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-06T15:01:03.529495857Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: ac08533c58b0323c9bf5c064dea0cc0cae67bba3a28862f0993284c11a9c3c94 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.21.0.tgz + version: 19.21.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-06T11:55:01.028746064Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 025154bbef30710626cd7bfcf1bc724385804c63d00e4cb48cfca283fe18439b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.20.0.tgz + version: 19.20.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-05T14:55:02.12956091Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: d9114e8c08b3fad1f29e5d80cf83afdedec0593f31e6069d7c73b111f46d2bfe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.19.4.tgz + version: 19.19.4 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.2-debian-12-r0 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-02-22T19:28:07.129900466Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b7b3f7dab215db1ccebcab9a3ff3f669ce73129502fcafb88dc818c56432a6ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.19.3.tgz + version: 19.19.3 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.1-debian-12-r6 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-21T17:53:17.32632552Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: bf24953ae84b82f4c170de81a0590a29620b2ea927c0398f9fcd454f8a10bc03 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.19.2.tgz + version: 19.19.2 + - annotations: + category: Analytics + images: | + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.1-debian-12-r5 + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-21T13:18:28.513160814Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 94469510781c829fb9806fb876c70032ab24a61ac4fb515ee2dd40e96ba0082b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.19.1.tgz + version: 19.19.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r6 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-13T17:06:12.000359042Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: ea71a1c721308278bb4e62df52ce28285d73c42d645ac60467a3ce4dbdea745d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.18.0.tgz + version: 19.18.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r6 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-09T17:00:51.247038306Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: a79e7a177e1625a49245e64928a176b946b51dd7270936807df1c9e9ec41c5e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.17.6.tgz + version: 19.17.6 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r6 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-07T14:49:53.111970428Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: a8937d179eb84ceeccc8aa4bf63ddc6bcfa109cc9e6974bdc64d734aac479c05 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.17.5.tgz + version: 19.17.5 + - annotations: + category: Analytics + images: | + - e + - l + - a + - s + - t + - i + - c + - s + - e + - a + - r + - c + - h + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-07T11:07:34.669372252Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 27656210b8fb83a59d278760bdee15491c3834ff775664a28cc6fd1311f3de4a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.17.4.tgz + version: 19.17.4 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r5 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-02-02T17:27:00.000380313Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: fc3dbbf603b097f5c7d482c6d441e67c722d867893fba16efd11bec010ca1f80 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.17.3.tgz + version: 19.17.3 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r3 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-01-30T06:35:02.346028897Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: c3c67056cae003df25afa0ca00ffcc792e4c59ed944dd6596f44280a8daaf3f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.17.2.tgz + version: 19.17.2 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r1 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-01-19T11:01:54.6266185Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b76091dea0e75aecf8e771a08af9378f5c3eee155d2c235c9d7bd43899f4935e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.17.0.tgz + version: 19.17.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r1 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.12.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-01-18T22:50:57.516528596Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: cf1b1dbeabf6130d9ec128e315b2920550eebff62d8199ddf38a41e4fba1d0ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.16.3.tgz + version: 19.16.3 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r1 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.4-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-18T21:56:02.447849651Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 107048c87206854caa47228d3adc9ce506fb59b21ddcb2784eef2dee0e661964 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.16.2.tgz + version: 19.16.2 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r1 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.4-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-16T20:57:29.037222596Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: a8a6462abe1d1678ae624eefd26529597ec946ec5db2c1acd381357999042647 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.16.1.tgz + version: 19.16.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r1 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-16T16:00:09.892958945Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 9b772fc0f90a6f5666ec7fc64b88ec588b114470b06a9c83bcaf5f1b77e1c4cf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.16.0.tgz + version: 19.16.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r1 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-15T08:18:05.936965262Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 0ff32124bac22e33ebb72fc7beb78d000fce3a6ac96d315a9dee0b6b54a76af3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.15.0.tgz + version: 19.15.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r1 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-11T22:29:09.973401029Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 19dcb68bb2c4bd2b90e12a8f267d4676936fb06f1dd90392712c9bf351c2d5ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.14.1.tgz + version: 19.14.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r0 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.3 + created: "2024-01-10T13:29:41.897985474Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 3bb50bfe1ad07ca06e23d75149a240ad301f56af473854eae2deca3a88d1703b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.14.0.tgz + version: 19.14.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r0 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.3 + created: "2024-01-03T11:57:18.198934647Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 51e5d595ba1ffee41114b71b1d554b3bb474ee3cb568ec0b3ec2732e90683a14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.15.tgz + version: 19.13.15 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r97 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.3 + created: "2023-12-14T00:54:24.45945581Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: ccb571461bdb25831b497b05f76a3732360fba7deb162b0dbdf6a5df6a43e984 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.14.tgz + version: 19.13.14 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r97 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.2 + created: "2023-12-08T08:57:00.866010745Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: de630dd1eed985ae0db587e122af0993701bfd0fff998814a7e6a35c68e59f55 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.13.tgz + version: 19.13.13 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r96 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.1 + created: "2023-12-05T12:14:51.439427951Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 0c39a8b7db59076ffcb0ab2c11beb69dd81360d5ec33c1b1bfb7da874a4baa31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.12.tgz + version: 19.13.12 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r96 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.1 + created: "2023-11-21T18:26:45.26535401Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: d11a8c81473a42362a57d69de07c93c623dae9cd9b463abdab2248bb9b31a3b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.11.tgz + version: 19.13.11 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r96 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.1 + created: "2023-11-13T20:46:49.504695531Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 4bdc27a6c41784243bcca9c634afe2a3b77f95e0cc21121f7b61670c01ea34c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.10.tgz + version: 19.13.10 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r95 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.0 + created: "2023-11-10T11:00:35.89231712Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: d23051ca49d5fa9111e7bb1a78515e304c42c918709dbaebb125598e3faa9dda + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.9.tgz + version: 19.13.9 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r95 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.0 + created: "2023-11-08T16:31:14.74366996Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 8f03d83ad4d86a3876a1076f99fdb087bc6b7e867466dbb1044e6d3aba979d9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.8.tgz + version: 19.13.8 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r95 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.0 + created: "2023-11-08T11:07:05.508893408Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 140811bd5c62f4fa6bd0d0eb8119a1bc93331af5296e9127fe5f50f455da733b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.7.tgz + version: 19.13.7 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r95 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.11.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.0 + created: "2023-11-07T19:07:58.831368035Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 2e08fa9d363410a135d446efbac10d3786786bfec8eac350efa1d343cae5ada4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.6.tgz + version: 19.13.6 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r95 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.10.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.4 + created: "2023-10-17T18:27:47.089065913Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: ca0f23f663331fafcfc4410bb3d34cb7d265637d6ac0c0423abb9aa16d15ad62 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.5.tgz + version: 19.13.5 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r95 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.10.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.3 + created: "2023-10-12T15:10:33.728975755Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b3072fb449a8b1c1ba02047497bcbdc8635e5ce68576c44a506b333111a83e9e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.4.tgz + version: 19.13.4 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r95 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.10.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.3 + created: "2023-10-12T11:49:19.77798878Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: f25118dc4858130c3ab2931bfb7b5428e73060bfbae3b787472fd1a5e88d6aad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.3.tgz + version: 19.13.3 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r93 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.10.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.3 + created: "2023-10-10T18:40:07.354985819Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 576cf73f27c4bbb40ab99ac5e61d535deab636a82e6d2886a1ef81527f83bbf3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.2.tgz + version: 19.13.2 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r93 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.10.2-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.2 + created: "2023-10-09T23:38:40.688073373Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: af9ab430b568fbba28376641d821549c6f892705604275bc273ad68a6756efa7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.1.tgz + version: 19.13.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r83 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.10.2-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.2 + created: "2023-10-04T07:54:57.04965983Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b99fe685d3043a589c7bb04b671a2a67c333eb4f7d9f7340c6fbf81a0673a56a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.13.0.tgz + version: 19.13.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r83 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.10.2-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.2 + created: "2023-09-28T09:12:04.567104964Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b9a407392c63188d784b84ac66bc1466a0fab2ae9601c589790430d9b8f7dadb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.12.0.tgz + version: 19.12.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r71 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.10.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r66 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.0 + created: "2023-09-12T22:39:35.227677694Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 17f87565b1441e22ded8f7afcab077b34a789e8692d4092a2fa22a52c6fcdbb2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.11.3.tgz + version: 19.11.3 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r65 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.9.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.2 + created: "2023-09-11T11:57:06.836307111Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 21ece21ddbe457aa7dbca667e64ce984584484531e112aec7564a5d87f0cda91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.11.2.tgz + version: 19.11.2 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r48 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.9.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-09-07T10:17:24.519176315Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: e2a8bbedd39cb8313007a7c9efcb023f38861aa50c2a91ac67f83c45c22a1e02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.11.1.tgz + version: 19.11.1 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r48 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.9.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-08-25T09:55:11.940375851Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 5da9415f3080a0ee82ff6be26e24704822c195b9a539bfed83dd4f199929d610 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.11.0.tgz + version: 19.11.0 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r48 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.9.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-08-19T15:14:49.607112803Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 02f0128c3dc73c1876171ae73bd910e588dfde39744cca552a7437bb4110bc95 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.10.9.tgz + version: 19.10.9 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r44 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.9.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-08-18T13:34:51.655417322Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: eb18e6151779be13a267e95fcccc55464a15b6563af3e19497ca8947be969a0b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.10.8.tgz + version: 19.10.8 + - annotations: + category: Analytics + images: | + - name: elasticsearch-exporter + image: docker.io/bitnami/elasticsearch-exporter:1.6.0-debian-11-r44 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:8.9.0-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.0 + created: "2023-08-17T18:14:58.662410599Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: da32ab75d29c0ae1480a4f5adc28a2df5bdcf3d39f97cc6a31514a3a3dddbd89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.10.7.tgz + version: 19.10.7 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.0 + created: "2023-07-26T02:33:13.121397049Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: fa7f0baff79b4eeb78a534925feb25a581d6841dc32f15b5efcd9c7464ceffca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.10.6.tgz + version: 19.10.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.2 + created: "2023-07-25T13:24:49.611527027Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 1a6670975940ff268d27fa59abe49c600cf0fc2696ef56263a728f41d99bc5a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.10.5.tgz + version: 19.10.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.2 + created: "2023-07-13T14:44:56.406728878Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: d51624c6a253a3a220b7676b24ea113fa3bba3e253d0dc66afbc6420cd838a05 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.10.4.tgz + version: 19.10.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.2 + created: "2023-07-01T06:35:06.222526323Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 66e1e2b6556c38d19e3a73cfae2200147be1c70698a2ddea917b0ed620178d12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.10.3.tgz + version: 19.10.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.1 + created: "2023-06-13T11:18:30.375032818Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 00e1733bdcf5174475a964f2d7f2e3a2e37daacb46e4045fb82b689690c8433d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.10.2.tgz + version: 19.10.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.1 + created: "2023-06-14T07:35:05.092723006Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 9bae7aa7a9b5c64e1c8656a8e035d6e2c2e767ae5bf7543e9d479cea0aa018ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.10.1.tgz + version: 19.10.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.0 + created: "2023-06-02T12:15:03.866145826Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 34b76faedffe4af71266ea16e143604aefa573238d8a74d587a2d8bf5df54e0e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.10.0.tgz + version: 19.10.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.0 + created: "2023-05-25T21:43:31.287966137Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 167026ad8de74b6cb72fcabed835760b2683c907a9227312e493cc2ce7b862d7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.9.5.tgz + version: 19.9.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-21T19:51:51.542438131Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 18f3ee38c120fe868555b5f69dcb776bf3ad34073bac50e2a7b7256fdd4ad9ed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.9.4.tgz + version: 19.9.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-18T07:10:56.693899873Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: fc2e41377a510221dda6411d722d7984432a6b1b0b1452515a462351504a407a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.9.3.tgz + version: 19.9.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-17T13:09:08.472424401Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: c2bda493fcdff4482208576ab02c91b8ddff37ec6013ff96941562b6b73a660a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.9.2.tgz + version: 19.9.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-22T08:26:21.930164694Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 853aff40987838cce84eb0d8d7aa3217c7597d070bf4c80af693146544e96b42 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.9.1.tgz + version: 19.9.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-09T16:07:08.215113304Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: ec4c18e9ca09484b5ce951a73e625232763f8d39812649e85792030e4d9998e1 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.8.1.tgz + version: 19.8.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-04T10:18:02.693663293Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: a5ccc8eb7e41129ce2835cc04aa8ef1386a6d6d670a97b94f3c50ce3a2e45a03 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.8.0.tgz + version: 19.8.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-02T18:39:56.553925284Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: d676038c58d86077f6e5e1714c32f373e028527519555e7ecea84b115991b4b5 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.7.2.tgz + version: 19.7.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-03-21T08:00:29.368628758Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: a6e959559f9605cf5f11cfc6b94a5a8c3c613d78900c6ed8982370936a297137 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.6.0.tgz + version: 19.6.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-03-18T23:17:35.080818131Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 457f127a18501e1746f477023a92c588a6de0b15e74834f2a6b09e3e7efcdcb1 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.15.tgz + version: 19.5.15 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-03-03T12:28:23.155330888Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: a8c125e6a23250e0f9b230ebd494ac257506477d8aebd0f26c0b489c523481ac + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.14.tgz + version: 19.5.14 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-03-01T11:26:02.848794207Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 87a409e6b6f19cedb7bccdf837ed8fb8357a8f2f7dd8f0ad25a7aea09d23535e + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.13.tgz + version: 19.5.13 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-02-22T18:24:07.103434521Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: df05a9b2f7fa67820bda25e1a2fe3111a0bbd79eee3e343d6c8d8f861ef1e41f + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.12.tgz + version: 19.5.12 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-02-17T16:49:39.478336803Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 83047f18207c8a816b445ab22d95127c6ddbaa115154930d4ef63109f1763d40 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.11.tgz + version: 19.5.11 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.1 + created: "2023-02-02T09:05:36.50856627Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 426a3a4fa38dd23750474c036f6b0b3771adcdef4b979174b73cbbe6b0fb0f7c + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.10.tgz + version: 19.5.10 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.1 + created: "2023-01-26T21:27:04.292190727Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 3c892f4a9dc8b0d4c5578cd30337beb21032c92582779aec07b97b65d3b7706b + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.9.tgz + version: 19.5.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.6.0 + created: "2023-01-11T10:43:37.588281582Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 71c2a8e7760ed65d1f62f3f2f3f82e65d8c68c9fbd3acaa7e214b23dbed33edc + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.8.tgz + version: 19.5.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.6.0 + created: "2023-01-10T21:27:50.667371996Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: dedbd2627229c1068cea3b3ad83cb8f0c7718d5140c0e434e794530795a87156 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.7.tgz + version: 19.5.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.3 + created: "2023-01-08T16:19:50.401196555Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: f1d524996d546fb2ab5055c3db18e387ddc13142fd588d5b58bbd301c0657cd8 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.6.tgz + version: 19.5.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.3 + created: "2022-12-09T16:01:30.937995141Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 93bf2d5141f09e00ebffb3b9f1a9b606cf81c2a8a784348b0f7cad41aa08bd06 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.5.tgz + version: 19.5.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.2 + created: "2022-11-23T02:29:48.736738494Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 984c6f1b76c094d89f2e4bb42390bb17d512a732121a0514a9b6e95d356127be + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.4.tgz + version: 19.5.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.1 + created: "2022-11-22T15:52:19.632458993Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 040484b15b3030f43e5b392cb775673b30368fd56c12c0acab92d96e2f990109 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.3.tgz + version: 19.5.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.1 + created: "2022-11-17T16:38:01.098676743Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 1a581897a0551adffef85c04d21f5104d3a363f25d42a09d6f04d5e27ddcc85f + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.2.tgz + version: 19.5.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.1 + created: "2022-11-15T21:22:40.735677612Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 74f8b5329cb82e22ff6b853d8ecc2fe8fec99110409773eb434605788499b934 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.1.tgz + version: 19.5.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.0 + created: "2022-11-03T14:57:35.839316477Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 99918b3f1d8b96420af90747a1e8b6b7d1bff0c080615a38dcf40dc5ab6e87f2 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.5.0.tgz + version: 19.5.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.0 + created: "2022-11-01T20:36:45.288679774Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: d06e0a037f509749d75600bc3393b0ca8e276c912f24ddbcbc8a8c7ae87de011 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.4.6.tgz + version: 19.4.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.3 + created: "2022-10-26T14:23:07.591895388Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 8edf0b27a22517cf4ff0c57483ca50e4bbc770e4ed306ea2298c3a6e235f8561 + home: https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.4.5.tgz + version: 19.4.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.3 + created: "2022-10-13T07:34:50.67979232Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: fc694cf6038800de6a56f20fae830d122d2ae3a2f9a4983a797beaba1588f1b5 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.4.4.tgz + version: 19.4.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.2 + created: "2022-10-11T11:39:34.393118549Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: de3da73c4bd8b6d5ee002d7f8bc4daede1c5f0110f9d93f733c64d6cdb5c5f45 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.4.3.tgz + version: 19.4.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.2 + created: "2022-09-26T15:28:00.772360519Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 64c3bbe3ae35b563b12ed3cb4fa4df0656027219bc114595531295a9e5309246 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.4.2.tgz + version: 19.4.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.1 + created: "2022-09-20T07:44:12.408608707Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 85eadcb2217e0e834c43289a6af4a7b97eded28812cc2f366e8a1106ffe7dd66 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.4.1.tgz + version: 19.4.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.1 + created: "2022-09-15T09:38:27.501443498Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 96cbbd17f28770686055a771c5ba951de0e5ba91f5c58b92296a6aa010c50c05 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.4.0.tgz + version: 19.4.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.1 + created: "2022-09-07T11:15:33.694387945Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b1c2c0ce97646b8056ed12481c0f7dfcaef89a26ab97eb67f59667328bcef0e4 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.3.0.tgz + version: 19.3.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.1 + created: "2022-09-01T12:55:28.723696324Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 02ac3e758909c7c19bd1c29466bafdcaf9697d0f96ca792572a7d28ae76f0e45 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.2.5.tgz + version: 19.2.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-09-01T12:38:42.438327626Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 9f2547414ce9960c6603a97619ed36959d1f4bfac01221201a51a468bf21a88d + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.2.4.tgz + version: 19.2.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-23T23:28:16.766468265Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 3413f55cbd367516e0040d4de8a678e9c8f9626fa5de24b5c0cbab687f68ac80 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.2.2.tgz + version: 19.2.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-22T17:27:07.82901136Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 28cab4e497d77ea74fa0032768c22752b1a4f35044787d2a8d5e6dd7e5e3c74c + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.2.1.tgz + version: 19.2.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-22T13:35:55.000266478Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 3b321cea253aa47645525ac6ff22da42df8d2015a5d56ad0c3f3b3031abedb9b + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.2.0.tgz + version: 19.2.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-18T07:55:41.610029684Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: b89c86892fecdbf91e9dd81de05de89c628b6f17df50d4b2f9b953ab68bba9c2 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.11.tgz + version: 19.1.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-16T07:34:33.507767971Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 789ca1a29ae1bb813ee113674a168bd77e8f021e8a39b12a1de6f68182f1011f + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.10.tgz + version: 19.1.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-09T08:34:41.880023275Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: f1d75aa8a1e16b927849255f6842471497e0924c5097320e90a93cec9057ca9e + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.9.tgz + version: 19.1.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-08T17:13:38.817613766Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 197e28d33ec1733c34bac71c58d5d5ed54a4a850d74c7726ef9da6a04cb378ec + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.8.tgz + version: 19.1.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-08T09:15:36.405880391Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 8c270ea6e05b0b5275d03ca5e9d9443932fcbff81c6c4774dba180227975deaa + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.7.tgz + version: 19.1.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-04T17:12:51.622343989Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: e0481e7149636c018f3274c944fd37d0049b301d9f518296e64c8cee2de89f41 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.6.tgz + version: 19.1.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-03T08:56:59.68080516Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: f29139bdeb0ab057a98507fafd67bfda0e3c1b2f1d8fab3ae276585859a9252e + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.5.tgz + version: 19.1.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-07-29T14:15:51.250173264Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 6751f7f8d8b8c39de8017fa68d027d96c5c652263deb2d057fd1519c5c62a0cb + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.4.tgz + version: 19.1.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.2 + created: "2022-07-27T20:19:52.029672259Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 61e8352ddd212accd3edd2312d73d82a9e03c5b76784dc8241e5c10da11d76b3 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.3.tgz + version: 19.1.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.2 + created: "2022-07-22T11:10:25.590704027Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 749cf2038bc45c4d131e13a1dc617893af60921aac4b519ca7a34192c01f07a8 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.1.tgz + version: 19.1.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.2 + created: "2022-07-19T09:51:46.443286257Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: 5f1b9d34e53f754ad07b98b10a45120e1183148c64e248ffd5f4a2bda3fb6821 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.1.0.tgz + version: 19.1.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.2 + created: "2022-07-12T23:52:37.194672409Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: f9aa3076efc8cbc63649fad9acb70ff83707ae6d04a4475f97077ea25233fb32 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.0.2.tgz + version: 19.0.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.2 + created: "2022-07-08T11:50:49.345760358Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: eb3451cffafb4053b589d4d9ac92e0cb7383d6cc55bffd11bdd01b1d0da0e6b3 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-19.0.1.tgz + version: 19.0.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.3 + created: "2022-07-01T15:58:27.439276715Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: sha256:cacef404622c269fe3241041c3273960f3f5e6f717011bfae439c3679d823ff1 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-18.2.16.tgz + version: 18.2.16 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.3 + created: "2022-06-24T03:48:49.593513695Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: sha256:8d8689db53691a95b7cd45a68204ef00058413271d412e113eb7ca0f32b59964 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-18.2.15.tgz + version: 18.2.15 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.3 + created: "2022-06-20T19:06:10.322166206Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: sha256:b620d67d014a5961b5e7a1fe1a02ef0da7926571998ec7d59b8e0bffce0f0da3 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-18.2.14.tgz + version: 18.2.14 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.3 + created: "2022-06-14T22:30:56.638374094Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: sha256:6cea0ebb1d69b3d315f57e6b1704f7e4b48f01aee6ac66de552b922df64487fa + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-18.2.13.tgz + version: 18.2.13 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-13T10:48:41.833984951Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: sha256:6cb15aba61e2dab8c13818500c5bc45a0013d0f3b9591b46abcd7cd71367daaf + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-18.2.12.tgz + version: 18.2.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-10T20:57:49.146774648Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: sha256:57eb8e9d7ce3b0e4a81376f70e17772290ef1ce16d1f58769ef70c821303ffa5 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-18.2.11.tgz + version: 18.2.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-08T17:56:24.753833164Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: sha256:45f8d7ab5cef30331c7c1cafb6b32163f4aa66b6d7df8736734d1dc983b6eae5 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-18.2.10.tgz + version: 18.2.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-06T20:50:12.049266064Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: sha256:92e7fa96e4e84a6c43a00b3b9a0ecfc00f25d77eccf5c50890202c44960e69bb + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-18.2.9.tgz + version: 18.2.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-03T23:59:40.010055481Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: sha256:047cb27230cfe464269b446a5167fd2cc9ec85747a9e141906e8cd5392714e28 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-18.2.7.tgz + version: 18.2.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-01T09:26:13.130196373Z" + dependencies: + - condition: global.kibanaEnabled + name: kibana + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Elasticsearch is a distributed search and analytics engine. It is + used for web search, log monitoring, and real-time analytics. Ideal for Big + Data applications. + digest: sha256:06ca0bc39d51123bcfb7060732da712ea304ef77b0a7f71fd067f5aae3876a87 + home: https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch + icon: https://bitnami.com/assets/stacks/elasticsearch/img/elasticsearch-stack-220x234.png + keywords: + - elasticsearch + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: elasticsearch + sources: + - https://github.com/bitnami/bitnami-docker-elasticsearch + - https://www.elastic.co/products/elasticsearch + urls: + - https://charts.bitnami.com/bitnami/elasticsearch-18.2.6.tgz + version: 18.2.6 + etcd: + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.15-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.15 + created: "2024-08-07T04:22:39.977045988Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 21ef65e3be31a7ab048e6bc5f637449a19ca668761ff59789056eb329ea3b78f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.12.tgz + version: 10.2.12 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.15-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.15 + created: "2024-07-25T04:03:56.929320774Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 03660405191d552983946e3ac87881c6cd2691008a134979e311f18045ab70dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.11.tgz + version: 10.2.11 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.15-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.15 + created: "2024-07-24T10:28:22.659593648Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 06a72d7350810e70d2c0afab42123b318c00549d67d8ee0070f40bd728f10145 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.10.tgz + version: 10.2.10 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.15-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.15 + created: "2024-07-24T07:11:47.74427897Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 5615997afa5db0578e446335c2c33a58f5548f83468c325a25cab32a88e0dd45 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.9.tgz + version: 10.2.9 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.15-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.15 + created: "2024-07-23T15:26:18.328985542Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 901882c0ee98079c7e6279e537edc5280981c5ea15747206101753dc6780aa35 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.8.tgz + version: 10.2.8 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-07-16T11:40:17.67751739Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 1d4246a151ac67d5851f48ccb653316775a6c387c7792536f4dcd2e4a6e0e079 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.7.tgz + version: 10.2.7 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-07-04T14:37:54.853782834Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 87d0db36a1d5913f64481ed2fd820b30f82bfd36e54c89aad67ca688e4265a1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.6.tgz + version: 10.2.6 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-07-03T00:28:43.233557965Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 919121144fa7bf64824335282a7d87412e8567848fa5937f58fb8a48dfbd395b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.5.tgz + version: 10.2.5 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-06-18T12:05:08.324216008Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 83e889ddb99ccda1994ac31d1c5bf3fab1f540e8b8a585cc84a62f47d376f7fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.4.tgz + version: 10.2.4 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-06-17T12:30:52.859828331Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: aca0ff8f02424e274bcd4380f7cfcd2777c9f27c1cf19f568740c6d39d06da5b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.3.tgz + version: 10.2.3 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-06-06T15:44:03.194320807Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: e8007f2f7464384d0be514c2ee48b753a6578c19274fd4a8753386eae9922f3d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.2.tgz + version: 10.2.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-06-06T10:00:42.204384626Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 38e498eecb7e0f31ccd17c2ba16354e2e208d7ab1d61990d9789af7d082ac1e9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.1.tgz + version: 10.2.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-06-06T06:38:45.460597156Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 4c93e53bad2f31c1f7813a228a46c0e7b3bac5c76fd42b47d3be4400f266f340 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.2.0.tgz + version: 10.2.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-06-05T01:42:26.006476932Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 1d7306a5635dc3961a6c52e0056f508332fed39ec0fe75af9420e0c55df117df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.1.4.tgz + version: 10.1.4 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-06-04T09:43:33.27297411Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: aa283584f22a1ec7077c7a8067995cb93ecee8d92d2e31fd837df4c588aa3d66 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.1.3.tgz + version: 10.1.3 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.14-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.14 + created: "2024-05-29T20:56:35.250081563Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: e39fc5a95f0fb91f7e1fdce8c36a705a44319505daac206d972ceafbb22590a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.1.2.tgz + version: 10.1.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-05-24T12:49:34.905482868Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 488cc727b68372c5a55f7db58f12ade2b62146a4f5c5cefb74805cca5a88f692 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.1.1.tgz + version: 10.1.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-05-21T12:53:47.830014965Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 88c74f30e359e5c5b6dacea3df7f83a3e881b2ea1450a24990072a1418ee515f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.1.0.tgz + version: 10.1.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-05-18T02:34:17.589395165Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 9a6ef4d9112c5c69bdb8fb228e28a643a1ee92b819f7c374157ea527de89d019 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.11.tgz + version: 10.0.11 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-05-17T10:18:15.942681784Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: e7007ae7b5450ad2b39157e28ada6738f3bd8ec18b78be4d0a118803a5bc7407 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.10.tgz + version: 10.0.10 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-05-15T12:40:08.558461203Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 98493b20c0e3b6e0a39620b05000570eadce07ab717b3d4826a42173d0e64b61 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.9.tgz + version: 10.0.9 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-05-13T21:23:31.422817922Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 85d58744524f58eccd40f0f0b084f16a530125de8c64638176bc0371cb7351ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.8.tgz + version: 10.0.8 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-05-08T00:36:44.929472839Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 72353b848fba3e551bc74cd232dfd285743189670089f27d917af4aa0e4c1a9d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.7.tgz + version: 10.0.7 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-05-07T23:06:11.671592171Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: f5211f84f31fa65350f0703ba07c23427aeb326f5a755d24763ad0271252bd2b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.6.tgz + version: 10.0.6 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-05-07T13:47:58.774018907Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: ebd48d3b4b3d0893a2b1aa6b5740d201c66ac39f86baf7b04e56486300e35812 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.5.tgz + version: 10.0.5 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-04-24T10:40:01.325997783Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 889884a85ae92191ef5db6c19d6c3c2747594bfce34ffdd158143f71435f1c7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.4.tgz + version: 10.0.4 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-04-05T23:33:00.757283613Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 6e85c32f0462e5b6a53ffffcd7bc73e04995f7d26ef7fe85a2d61b4bad728f53 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.3.tgz + version: 10.0.3 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-04-04T14:13:26.735185523Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 60d0b9e293cd439e2854d1408c309b1397bbd9134e09c477bece45f11adeabef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.2.tgz + version: 10.0.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.13-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.13 + created: "2024-03-29T22:34:04.114977306Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 050d666c4fdd499c0f42111dc35cdb0e1544f0ddfd12791885e669a0438931cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.1.tgz + version: 10.0.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-03-18T09:44:14.888021792Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 2a5f1a57a89d3596ed4efd8f75121075b2f6bc4d9b90fb4e9bb3ce661b0879e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-10.0.0.tgz + version: 10.0.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-03-07T11:13:48.487450476Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 1a41d5668fdf0b0d870aa9a59bae0477fccda415c3abf807d467905f413b0dd6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.15.2.tgz + version: 9.15.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-03-06T17:16:47.415941325Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: da665ac7d65366b102c84bdc2ffa006153f3c4a0f45d8598f81b60a01b8740d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.15.1.tgz + version: 9.15.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-03-06T11:25:43.548106267Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 1e613a229135ef4109131889c29a4c0f0da2abd3063c4ebdc4159a35c9ea7f1b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.15.0.tgz + version: 9.15.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-02-29T11:45:26.450797916Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 99f7439661793780bace651bab00565cab270c01a0e1cb2d831cee854f233107 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.14.3.tgz + version: 9.14.3 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-02-21T17:53:24.385618993Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: ebfca8d2483efc020f15367df0e738fa810cd6445c405574b1b0d4cb2d4fdfe1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.14.2.tgz + version: 9.14.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-02-21T16:32:51.184652554Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 230730e84cf472268ad90c51da11d9018de2fbf975e5fcc4c83546f19684bf43 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.14.1.tgz + version: 9.14.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-02-20T17:22:57.050857859Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: ae91ebf4178919bb97a176c97f0363a1f551bc648062ed7137418c82fd9a55f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.14.0.tgz + version: 9.14.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-02-16T13:20:44.464623715Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 16184e1767261c55ccd4f54295bf47d0b9348f53771cf61da5814f58e7aefb3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.12.0.tgz + version: 9.12.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-02-07T17:25:18.634797554Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: eba7dc905316b79cbe2b41e90900dd6cf419bd3c6ff79dbf7c0ba3ecdeb6044b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.11.0.tgz + version: 9.11.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-02-07T17:03:49.101333347Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 233e822132103ba200b2db1b29a67aa4938ee10325f424c84b03e4b425c68ff9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.10.8.tgz + version: 9.10.8 + - annotations: + category: Database + images: | + - o + - s + - '-' + - s + - h + - e + - l + - l + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-02-07T11:22:37.074270304Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 70873a588ed431416991914fcee9b0a58f43cd387da03042829481dc19bf2765 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.10.7.tgz + version: 9.10.7 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-02-02T16:54:27.405818Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 592e2912241f6193f5d59617726f0fe7151efcf3b6e07e8201b36c2747c19c7f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.10.6.tgz + version: 9.10.6 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.12-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.12 + created: "2024-02-01T05:22:06.922320182Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 0674b998e3e0a7c990dcc75e122970935e4a3edfa6819c14a9fe8f814157c131 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.10.5.tgz + version: 9.10.5 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2024-01-30T08:52:09.6705119Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 6858ec2dacd2f66972984bee75c87c60fe914e2c8255fda86ceca7162b848297 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.10.4.tgz + version: 9.10.4 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2024-01-27T00:47:26.462309152Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: c39dcbc74a21c60f6d8a11197bce8d37f0ce1dab1a16c9b05225d7c9ee3dca44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.10.3.tgz + version: 9.10.3 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2024-01-22T13:07:11.846023968Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 0f96af88cae5b1dc7f1f649c173a36d95027bb4ad237d569610be917441d6567 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.10.1.tgz + version: 9.10.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2024-01-19T09:31:39.44886587Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 33cf268352fc80a3e65f709607610927275996b99357ada697ecfcc9df396ede + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.10.0.tgz + version: 9.10.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2024-01-18T10:34:11.05691475Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 8ced0976c4fac50f6ed3623518096f787f93caec6f522122592ed644a6638854 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.9.1.tgz + version: 9.9.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2024-01-16T09:38:05.449026219Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: cf5f6966dc565bf37d5aad4cce8f3f682693d654980c3874c6e9103893cd2097 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.9.0.tgz + version: 9.9.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2024-01-15T08:19:01.654936939Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 742edd461c389844d06ec6167911f5a604fab48888ae9bc74e96f29a78ee3d8f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.8.2.tgz + version: 9.8.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2024-01-10T11:37:57.639988088Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 9488eb7f9a35d4d80eaff6d19bd75fdfb6ca70fd885ee2ea87f615575e35ffe6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.8.1.tgz + version: 9.8.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2023-12-21T10:33:49.83200394Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: c6a15e959ba9ed17b2fbf9c7ef281677239c870fbe5f65b4c171b4658ffefa2c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.8.0.tgz + version: 9.8.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2023-12-19T20:25:41.706189193Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 12a4c138ec66c5db0a6e1da7420de46cb41a8e335a28991c65ca4f5dd811a02e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.7.7.tgz + version: 9.7.7 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2023-12-17T14:24:03.77712729Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 4817ce1bbfe19ad81ef1a5855ec0fc7eee2b8d0c2271949c687272190ce3f2e9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.7.6.tgz + version: 9.7.6 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.11-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.11 + created: "2023-12-07T22:19:53.162401654Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 676f1eaf88b2bd1651eafc31d06b391261df6f2bf7e123ab86efae024f0323c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.7.5.tgz + version: 9.7.5 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.10-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2023-12-07T12:36:27.098266647Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 12b0e7557cf123f638249b0d781371c48f4f196b6562dd991ec27e0854ac9e41 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.7.4.tgz + version: 9.7.4 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.10-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2023-11-24T11:07:15.823392072Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: bdb6d7043203c6630615cfe383b09889b5f7ba38b7400159112a93752eb33e4d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.7.3.tgz + version: 9.7.3 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.10-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2023-11-21T18:28:48.25120141Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 8d03b3432805dccf77bff769802c6309f0178894f5408bbae5fff8c27069870a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.7.2.tgz + version: 9.7.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.10-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2023-11-20T16:50:38.803227638Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 31fe92985504b44322867c63b069b440a2bd69210c374b5080ad3e40bc2531db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.7.1.tgz + version: 9.7.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.10-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2023-11-17T11:49:10.049502373Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 5c6f9cefaabb66c1580c455fb3d6455a4a36891447a208241951bbe4f8fd1167 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.7.0.tgz + version: 9.7.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.10-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2023-11-08T18:36:21.862769267Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 82975869441441ebb5f32c423efea8d72138e47627e7e22b3a4583d4eecb9559 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.6.2.tgz + version: 9.6.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.10-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2023-11-08T16:27:53.09638371Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 76a03938185d9f2f39a9ad5fd7c9660435b3263ce71f800caef01ff8a209855b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.6.1.tgz + version: 9.6.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.10-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2023-10-31T15:29:42.58224984Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: af67fc273976b7bf981f3736087edde0b158b8acecd616fba8a86e2678cacfa2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.6.0.tgz + version: 9.6.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.10-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.10 + created: "2023-10-27T15:09:35.099113076Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: d2c88a2599c97efc811274888dc6dcbbe2e0d0d95a30ebe1fdfbb060088f1a75 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.5.7.tgz + version: 9.5.7 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r148 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-10-12T15:12:39.984457573Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 82879ef0ec98134b75bd47da9f6d21598623aa1d5a85e594873a7d8c71948d88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.5.6.tgz + version: 9.5.6 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r148 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-10-11T03:36:28.245298041Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 31006c2a5d1926e9cdae49952b67d7ac48da0e21f61b66b65e0de98c315ac35c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.5.5.tgz + version: 9.5.5 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r146 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-10-09T23:23:32.183926914Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: f0dcfa1e4a94be942fdb1ab70c1f3c08f0a4c8fdfd0da59e6f8f563cd6339e82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.5.4.tgz + version: 9.5.4 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r146 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-10-09T18:51:59.899676231Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: dd80d3837791823bc60b4c24ff169e9a2f4eb600b1d800d88660746352d2b284 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.5.3.tgz + version: 9.5.3 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r144 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-10-09T12:33:02.92918146Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: b99c1509173cdb5098c1f0ea8ee1ae370cbb344a6f268d32f5cd367e33226c7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.5.2.tgz + version: 9.5.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r144 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-10-03T19:58:42.521796846Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 1540702fe539519672c1944408c4b291a271132c923fdf8b58048634bd2db62a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.5.1.tgz + version: 9.5.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r118 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-09-11T09:21:28.265704275Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: a9827216d7337b8296102d81741b7b3aeb922f2d0493c2b6d74e08de2e9ffcfc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.5.0.tgz + version: 9.5.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r118 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-09-08T08:53:54.509937851Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: a324368191917872bdfb078cbd5d891424dfcdcc03b5a7107271faabd148a780 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.4.3.tgz + version: 9.4.3 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r118 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-09-07T07:17:07.890581183Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: e1f3ecf5b7adf73af258825e16a2782d1c19cc19aaa411a3dbe78812a878f66c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.4.2.tgz + version: 9.4.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r100 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-08-29T07:20:28.617236597Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: d2340224f60fce12a1f261e88fcb1e2c885f99f10c2d5be14cb37bdbb95cba89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.4.1.tgz + version: 9.4.1 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r100 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-08-25T16:22:40.342596873Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: b3d9cf6d0e1f7329f6193d093eab7e0b5aa8f13d32482d2aaae678dae02b70ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.4.0.tgz + version: 9.4.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r100 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-08-22T14:56:43.574104335Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 638dc0544487ea8ead9ee0e220f201548e768d1341e418f7aac0e9ab4d0fe96b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.3.0.tgz + version: 9.3.0 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r100 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-08-19T14:09:07.697002543Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 785b5cd1eac897a394273b4ce26569002d96f573070fc647798f9843d098bd2c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.2.2.tgz + version: 9.2.2 + - annotations: + category: Database + images: | + - name: etcd + image: docker.io/bitnami/etcd:3.5.9-debian-11-r96 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-08-17T17:15:55.981229251Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: d109c37fd14f8700bdd2a92de006d3ad222a9d6a4ef4dffcaec0d9f33635c9d0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.2.1.tgz + version: 9.2.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-08-09T10:01:03.265395005Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 3f66942c7b926e65c8c1c512771b3e6cb1634b2455b27fa275626ebad54da1dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.2.0.tgz + version: 9.2.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-08-01T12:51:37.745877417Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 528e70c4673eb46daf78d92faf9dbd7a0260dd37cb9694e6404ec7931f86dec3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.1.0.tgz + version: 9.1.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-07-25T13:34:41.163900544Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: c611ff4f70476d7d21bf6ad82051f1eb2f828b8db36c8bb9ad880842d77bb95a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.0.7.tgz + version: 9.0.7 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-07-19T08:30:38.274162365Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 78ad5c4febcb9ba8cb148b7b0d49f9a7ab88e2de12a9041e198a37b21f88779d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.0.6.tgz + version: 9.0.6 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-07-15T09:40:33.630930731Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 88249da374314c13cbcb918b77f4b51bfba0db8c08c98c4c69ba3238eaf77967 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.0.5.tgz + version: 9.0.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-06-30T20:44:14.049548284Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: e7a35c8a67e213b4e935942e2a04382b12632209a67cb6bded5ea16a91adb9e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.0.4.tgz + version: 9.0.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-06-30T13:34:45.793298047Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 76b6c60744e57c2436146eeef3408b5aaee6558f8ea28b63090a21e92f3db0d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.0.3.tgz + version: 9.0.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-06-29T17:25:55.196350468Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 392a2f53baa168ff0714db80a1678eecb033133eac8ee5aabf2d79b60319881b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.0.2.tgz + version: 9.0.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-06-20T15:16:38.400981579Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: b33f420d589c3740dbb92de3f00ab0396e259878877c7c1b7172b8fa7cd41988 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.0.1.tgz + version: 9.0.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-06-16T07:34:12.809535158Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 773df53317b66ca7a31653cc225c5294a74159d19cc3b18153de70675b1880a1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-9.0.0.tgz + version: 9.0.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-06-01T13:43:34.66680046Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 77f75b3e176df3c5e3d43f6a2e9a53c4e3b1c435fd9bf9c817738b578fce0851 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-8.12.0.tgz + version: 8.12.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-05-21T15:22:11.473207512Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 4667e0cb387874c9c15206d9fe9d228167f397b2587b480a999241c1d9f3b598 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-8.11.4.tgz + version: 8.11.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-05-17T07:40:00.56999256Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: d1a8cd9228e159650465a3b008adb462927a3d051b5cf228b4294beb0d641e84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-8.11.3.tgz + version: 8.11.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.9 + created: "2023-05-11T14:53:20.75649763Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 80127454bce23af2c9ee8eecf6a812d724da87f35395a25402ddef76175ef08b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-8.11.2.tgz + version: 8.11.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2023-05-10T08:45:13.872605592Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 157b7a4d65587025be1a925fda4ae0264c39076ed691c1202a1c4b3536a749f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/etcd + urls: + - https://charts.bitnami.com/bitnami/etcd-8.11.1.tgz + version: 8.11.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2023-05-09T12:29:27.70748101Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: bf324ed62658975525807fec08e5e750672078a65d850b0646c39d6a09670f53 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.10.2.tgz + version: 8.10.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2023-04-24T18:11:15.195437167Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: f39d1b829e271e89877a684fa70058a645fdda4aea57b28a1e6e00748be87fd7 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.10.1.tgz + version: 8.10.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2023-04-17T09:28:40.635876533Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 07ab1696a8c728b426142166f58c9a4444fce12e8fadb295d6c0c724539d3bc5 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.9.0.tgz + version: 8.9.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.8 + created: "2023-04-13T14:15:38.917379105Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 2eedefa6996a37c4c40770e56ae28c4f6188e5ba50f4397c80a9e5a9892422d2 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.8.3.tgz + version: 8.8.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2023-03-31T10:43:09.772259878Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 03c274eec0e1979d2184cb4dd5e7b8b1c4ae6d71d4c9059424c04e35ae00ff9c + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.8.1.tgz + version: 8.8.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2023-03-10T11:57:07.659614511Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 03d9dcff620ff6a5bef6804a9e83039cd7059adca253e6476bbc245b2498e991 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.8.0.tgz + version: 8.8.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2023-03-08T08:08:53.098948701Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: c43f4c0ba132f1b76fe0a90b70d9fadd5b32ef2411675d7ca993c6a909a87064 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.7.7.tgz + version: 8.7.7 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2023-03-01T09:55:31.248321325Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 8850d352a5957e67e843d600b35390a63a5fe59f247d82440834c731c2a9e053 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.7.6.tgz + version: 8.7.6 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2023-02-17T15:23:24.062947395Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 0661291c9e78ef6499ba7aafd834afd5a0f5beacc12a873a8780bfdf7a3ad31e + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.7.5.tgz + version: 8.7.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2023-02-14T22:17:41.033489508Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 706540ba2ef834f34c94d43865696ddf0389c53c607e41839d9ff878e86d9f68 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.7.4.tgz + version: 8.7.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.7 + created: "2023-01-20T14:42:29.630820571Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 2d69dccabd66b09e654cf2a0fa526b5f6ffca1e4a47da412796eb4cfde0509d5 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.7.3.tgz + version: 8.7.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2023-01-18T16:13:28.983937503Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 3e7d339c709c8e1eccfa28c59ab2fccb2f1dd77d59c0ab3ec3aee43f1fd43c30 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.7.2.tgz + version: 8.7.2 + - annotations: + category: Database + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2023-01-16T11:13:14.370516886Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: e4a1439f499574e480a5c0e2c4386b6fb0c1a5cdbf0f41173f31673ee1947443 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.7.1.tgz + version: 8.7.1 + - annotations: + category: Database + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 3.5.6 + created: "2023-01-13T17:17:35.891750225Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: cb9f06ea185b373573c5259f16e074551602a3f6401485b3746bc1138aa82c5b + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.7.0.tgz + version: 8.7.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.6 + created: "2023-01-09T07:36:31.885231882Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 10317dc4abd6cd5ff57df746ee25d6c28d84a30a5dd36fe9cf8ccec4c697ce0a + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.6.0.tgz + version: 8.6.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.6 + created: "2022-12-19T16:07:57.141023644Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: b65de665a1503e01c0ac710153cedefb4a08f2b5901b01dbb96472c699e78189 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.11.tgz + version: 8.5.11 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.6 + created: "2022-11-21T17:35:04.777486327Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: eef61da395f214b9b2495444e1336315cd4a2491ed84a8100c9836993af2600c + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.10.tgz + version: 8.5.10 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.5 + created: "2022-11-20T16:31:46.229551248Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 7a6eed686006ee963d278601c7a10e303ca623a40295ca9df5bab254555640dc + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.9.tgz + version: 8.5.9 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.5 + created: "2022-10-21T16:17:17.619680085Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 958becb901987860d34ee339527b49cf89064f619615aa474b4170facf86159f + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.8.tgz + version: 8.5.8 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.5 + created: "2022-10-19T14:40:20.497773542Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 25eef1a870ad0fd72c5787d3c5eeab9d8de6fff50d9d4b62c8aeb287e1729458 + home: https://github.com/bitnami/charts/tree/main/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.7.tgz + version: 8.5.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.5 + created: "2022-10-14T10:51:53.393584727Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: f732df622b5ba89e021889e1c472004eee0780d3f24c4a6897d6a4d39b4fa6ed + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.6.tgz + version: 8.5.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.5 + created: "2022-09-22T08:49:08.633503042Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 35e5f1d32a54dab5640cac18712203cde226a561f75985419d06e4998f27540b + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.5.tgz + version: 8.5.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.5 + created: "2022-09-20T07:30:55.995297678Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 996b7ded202a5c19e01d80dec01e91a38a7a653cead53056b6c06c81a3c12e89 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.4.tgz + version: 8.5.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.5 + created: "2022-09-19T16:25:02.368942984Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: dbef2d36f283ab483483f69b8d4d17d90d2c2db09497d85f8ef2667d05e1ed6a + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.3.tgz + version: 8.5.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.5 + created: "2022-09-16T09:42:24.623813Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 462651b096af098e39a7b11c9ed85cd8ccadfd9da6682b7232896ed2010b6933 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.2.tgz + version: 8.5.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.5 + created: "2022-09-15T15:23:52.211103567Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 5c26a8bf06c4824be2314eaad4d03eaef0ae80c7b63205324b911dd53ea69ed3 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.1.tgz + version: 8.5.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-09-14T14:41:41.039747944Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: 1ee8739bbd85d8bb356e93ad4b0e522a7169bcc9d3ca38562ccd8e623bf9ed12 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.5.0.tgz + version: 8.5.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-09-05T10:19:16.335302671Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: f72a9a877f6be9dbae834caec625c3eabee63fd5660fcd315202119a8f1c650f + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.4.5.tgz + version: 8.4.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-09-03T14:00:08.126988652Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: d429edacf8dab65f90aaceef2438d0cb6f5721cb44b6c62d9a3f21dd0cd09473 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.4.4.tgz + version: 8.4.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-08-23T23:33:58.812932249Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:c19a82dbe60826bbe42c8df9cbb7d53cb1ceb0092d39bec71e1ac86f89c2dae0 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.4.3.tgz + version: 8.4.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-08-23T09:12:41.395383112Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:d226eb4e5e7c4873fd3b547265be2da7589b8812e9406d08c51cc444e7488c7d + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.4.2.tgz + version: 8.4.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-08-22T20:16:24.072329377Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:035f99a41ae7ded52d02008a16a4163820f6b421f922222cfe5ec6954b918ec9 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.4.1.tgz + version: 8.4.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-08-18T08:39:22.994666469Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:194e45977d7c1a94059530c06e2ba0f07dd5cbcd5095616e699d66ea6af99284 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.4.0.tgz + version: 8.4.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-08-09T18:58:22.362215868Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:afeecc751745612fe9e52eaf602557b0b7bb7d6df5e274547f000e0f5bee88f6 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.3.8.tgz + version: 8.3.8 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-08-04T21:40:35.106114436Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:fd0a409ea348ce62f73e6090cf76e62edfa887f36bb7befae71ad67acbb7d79e + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.3.7.tgz + version: 8.3.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-08-03T08:41:38.095986034Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:bfb29c5305931f567d91112ce0cda240ef890654fcdb02fb67eddde615f52305 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.3.6.tgz + version: 8.3.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-08-02T08:58:28.724973342Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:03ea67225b1f4a2cf5dc72e151540e94924d543761541be8a0f8446c3a80e871 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.3.5.tgz + version: 8.3.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-07-15T13:00:57.187424467Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:d302bd2af4c74865fa7e90e35de481623ffe184b007182495317c7d44ef22b89 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/bitnami-docker-etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.3.4.tgz + version: 8.3.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-07-01T10:21:54.715406463Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:9d2461a1bbdeec341211bbc59a27e22037297796bcb6ba78827a28b878d5eec7 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/bitnami-docker-etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.3.3.tgz + version: 8.3.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-06-25T11:40:55.142779854Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:9d1dee6911cea90ea0f85c41849f0f56f56f1ed2268e81f688090a4d8b5768da + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/bitnami-docker-etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.3.2.tgz + version: 8.3.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-06-24T07:48:52.516715199Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:91a7e5cd9621d2b86aa625d5dfee488602607915651e65c04644e437daec8ac3 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/bitnami-docker-etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.3.1.tgz + version: 8.3.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-06-13T12:18:14.281075069Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:abdf3b01794ea1fba659a22c593aafc0bbc52b7bafcac3b91cd2bdb2dbb66ef1 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/bitnami-docker-etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.3.0.tgz + version: 8.3.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-06-10T16:51:36.152768438Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:d0c392feaf897932460433530225edb4392cc1762a2243506f113dedb6674080 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/bitnami-docker-etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.2.6.tgz + version: 8.2.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-06-06T21:50:10.120044659Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:a522643668d04c32c56770e45c3e0752ac153530910bc2b4e5127d493e99b9a8 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/bitnami-docker-etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.2.5.tgz + version: 8.2.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 3.5.4 + created: "2022-06-03T15:32:47.628296228Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: etcd is a distributed key-value store designed to securely store + data across a cluster. etcd is widely used in production on account of its reliability, + fault-tolerance and ease of use. + digest: sha256:dbde6c7608a046a64f689404b36ff8a04c2207aa0c138498db07deeea77dc8e2 + home: https://github.com/bitnami/charts/tree/master/bitnami/etcd + icon: https://bitnami.com/assets/stacks/etcd/img/etcd-stack-220x234.png + keywords: + - etcd + - cluster + - database + - cache + - key-value + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: etcd + sources: + - https://github.com/bitnami/bitnami-docker-etcd + - https://coreos.com/etcd/ + urls: + - https://charts.bitnami.com/bitnami/etcd-8.2.4.tgz + version: 8.2.4 + external-dns: + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-08-13T12:09:16.083948852Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: de58fd9a8dff14a6aa4b25d6f41d396a721702f681501796711cb84f82b375f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.3.5.tgz + version: 8.3.5 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-08-07T01:59:58.535068738Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 45e0ee3a64f994dfc774bd24fc4e2477f8e439094eafcf49748aac2b778abc9c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.3.4.tgz + version: 8.3.4 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-25T05:26:35.1577843Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 4c6531d5c22db71646d837fd81b29b0e2a96190a8bb6c0d6f73509cc9da8abb8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.3.3.tgz + version: 8.3.3 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-24T07:56:57.413934508Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 35a9df1ae2439bc9f6684d043d2d0277bd363403990e0782fa493db0cb0b56d4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.3.2.tgz + version: 8.3.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-24T07:19:17.263759699Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 6a358da06eae73cbae64cf7e04c613e470bd6402ae7d32bad0245bca38c81d49 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.3.1.tgz + version: 8.3.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-23T07:26:16.875648763Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 82d603c83e2b6de13a00e70173d293d7a0277826f92c780a7d2e0d3458687b34 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.3.0.tgz + version: 8.3.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-18T10:16:33.746156384Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 731b0159d2c67f44b7da89fba2c7aa048dc87388eb881306a02845a4b5f7b8b8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.2.3.tgz + version: 8.2.3 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-16T07:21:14.550674352Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: c9e1a18d1122dcc1f22a306e58820b804f4ed32c74d3136e18b793fba5759993 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.2.2.tgz + version: 8.2.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-11T06:05:51.677508591Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 8369aeb13f1e5d06f2bdbf6deb1639a2496bee487bf9fe0a8398958a70ea2718 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.2.1.tgz + version: 8.2.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-10T08:44:15.340834787Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 8d81758ac16d407fa7f8831d524c0b96080ec28a111b4a4974deaae041165c68 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.2.0.tgz + version: 8.2.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-08T10:05:45.157661522Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: db4060c8680c83619f505abdeabd5bcf4ad25e9cbd1ebaad2c3575ed2c57673f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.1.0.tgz + version: 8.1.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-04T13:43:16.254880772Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 6870928e614a8af580534ba64d9b78cde9a410077f823b48c8e321c54708f023 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.0.2.tgz + version: 8.0.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-07-03T00:04:13.559910628Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 5877e56dc44d244f2cb908c5e036f35fcac8ba129b0dae3d5ebfe35909bd2626 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.0.1.tgz + version: 8.0.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-06-19T07:11:21.35894582Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 512e4f39a0bd3111f43b5cb9d5069d5258d8e30b3848d20178c1720b731118bf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-8.0.0.tgz + version: 8.0.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-06-18T11:59:00.677050452Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: f074ae2102d61ea37f455d4ac86ac63d80aa82bd46c8aa87f3c21df7eefc1f82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.5.7.tgz + version: 7.5.7 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-06-17T12:26:00.690184479Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 173211a9fa2075e9234c7fca1268c04c7da0cf21fb2456247b9a22ef37f11321 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.5.6.tgz + version: 7.5.6 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-06-06T15:38:15.03066774Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 10459f052e86b68b7fc6bfdeecc455fce3b6af7a30607a737afcfbd23b743e1e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.5.5.tgz + version: 7.5.5 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-06-05T01:42:37.013538909Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 024d95c89e7256f1146ed6ffd4c98d71985188b95a1c3bc64dd0dc186c63b07d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.5.4.tgz + version: 7.5.4 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-06-04T09:46:32.30776557Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 88973cfc060c13c99f96459451b0fff968d787c86bbdc9080d32f15dcbefbd83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.5.3.tgz + version: 7.5.3 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-24T08:24:56.470568372Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 9fd77514ec24fa79ce1dd924771664b2d84057c69836cbc21ee840b467721e14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.5.2.tgz + version: 7.5.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-22T11:50:23.503155467Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: f59e9a5b0fe0bcdb27c8fff1a02e464c651b27eda7fe23e0ebf7687bbe5cc987 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.5.1.tgz + version: 7.5.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-21T14:21:05.81305025Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 57eae386db7e36738f74a995ce8f38bb55ab5a44462e7e32eed2afa1d0f4ebeb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.5.0.tgz + version: 7.5.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-21T09:35:46.722548064Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: ad0536952137ec5d6aaf332f1795ea7118799cc69bd5c39e3ea930e56c436cfa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.4.0.tgz + version: 7.4.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-18T01:13:57.317865336Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 32c87039a01bfaf17301438ea05dbe0154f9797a191af15cd6c4b291ed80b3c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.3.4.tgz + version: 7.3.4 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-05-17T07:52:41.266420692Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 919b7b1cf4c854df8dc644d51d2e2647245195e47244b95fac4f59e5ca149f9e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.3.3.tgz + version: 7.3.3 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-05-13T21:15:03.931666733Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 0d9711d668e290d12330d87769d4228950682c8af30fc788d6440dab8ea99700 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.3.2.tgz + version: 7.3.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-05-13T10:05:59.351732672Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 21799fd20fcd01158a022c9f8951bd5ed095dea0af8f0780e985f0c65097cbce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.3.1.tgz + version: 7.3.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-05-08T08:56:08.689740222Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 414fa0a5237f0168c9718e35d9f0edf639ef3f41645cdd9b626cc64c5cce877c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.3.0.tgz + version: 7.3.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-05-08T02:20:12.135870734Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: bb54760842d0496ad54f0edd12f6ba4bc25e527e9074f3284c1df9af64779edf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.2.3.tgz + version: 7.2.3 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-05-07T23:02:04.460502676Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 5d2fcfc19ea03480d1b06a407625740afeb34e99528758c5ec7ccf8cf9f7b300 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.2.2.tgz + version: 7.2.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-04-29T06:34:33.145609163Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: fe3d2b5e96b64bcf5f090795c9c0781d7852ba859fa9a78e5fcc865827f74728 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.2.1.tgz + version: 7.2.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-04-15T11:16:42.701032948Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 5dff0b3b1e32ecc869adcb98f2d24ed5bae6f8817e857fd1633b09acdc4af5e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.2.0.tgz + version: 7.2.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-04-05T12:08:59.355551645Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 1e36b58880f5374699bcb9c24c73cc40012bcf494ea39a607868372f422eefb3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.1.2.tgz + version: 7.1.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-04-04T13:46:50.955374409Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: ab9bc18b34344408159b540fbc06bea0661e610aa17d436973b34be0b8363c01 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.1.1.tgz + version: 7.1.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-03-22T12:47:15.803586489Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: cd2e488901012a0a49c53f60b6bcf4a8a2e644b45a2741c2c12b2f32dbacb1b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.1.0.tgz + version: 7.1.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.1 + created: "2024-03-21T18:00:35.712043819Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 29eddd92e03b34aeb934500f3d4b7ab1f237c7a7a2b26eebe7b73a27b29b4af7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.0.2.tgz + version: 7.0.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-03-21T13:45:07.127138237Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: b550f2ae41afd6b495ec9775153d149338651899ede84dd59ddc927b19b189ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.0.1.tgz + version: 7.0.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-03-18T09:42:07.693314397Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: e33dce802509f5bf1af0f0b408e6a7783c0aae80895bb298fd251418568763f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-7.0.0.tgz + version: 7.0.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-03-15T15:47:17.520213609Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 287a9c92f2623ab19c4be6b173aa4c1b83f88756d931dd8dad4c54d82aaf75e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.38.0.tgz + version: 6.38.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-03-14T10:21:59.260635741Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: ce593cb3835d35ae521aa9bc7d8199dc63c05b66afdceb206040513563060d29 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.37.0.tgz + version: 6.37.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-03-06T18:15:06.881610425Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 4f0c48462e2aa353d79ace3c56ab6b551de24c434d4266f6002cbd4e1af053df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.36.1.tgz + version: 6.36.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-03-06T09:12:28.514396172Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: ec301df49ec04dad1e460979d7d621ad1d7925a9487b6b0605b484b6b0a31683 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.36.0.tgz + version: 6.36.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-02-27T12:54:51.729919137Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 6da9fdcce9bd2519ee817d7fe2836ee34bcd6ef3d05a903afa40ea56549ab94e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.35.0.tgz + version: 6.35.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-02-21T17:44:39.9453597Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 1bf4447897fa1d4247da9658888fabc49cd537768b4754c855339e2892e3d3a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.34.2.tgz + version: 6.34.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-02-21T13:18:21.660034401Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 5b974c96ef5f951d9ac680ca7c82813f40bba51c89c4107616677a7433ba14e6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.34.1.tgz + version: 6.34.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-02-15T11:33:55.062473258Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: eb24a851cdea4093587bffa92ee342dd927dcdf540b51ed3fecc947328efe858 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.33.0.tgz + version: 6.33.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-02-09T11:44:41.935149436Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: b18b3a4e4318dac88aae45c3ba75b82cea84a9d10f548d053b1c19a0ae43acd8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.32.1.tgz + version: 6.32.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-02-08T09:19:50.947794653Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: aeaf5043b152585800ae496d7231769855fcaf003ebf65fc5b319e83b9606bd7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.32.0.tgz + version: 6.32.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-02-07T03:19:51.192501579Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 388a3654d71c11f1d14c2f86c41d94fa4ebafd3e52924e21d9acdf0c1b69db60 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.31.6.tgz + version: 6.31.6 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-02-02T16:29:57.074135012Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: b4b69ee45b221353e1c92cb7dc125b82f482d913e5fbbfe488d4df66c42648e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.31.5.tgz + version: 6.31.5 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-01-31T12:22:28.147098894Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: fcb85fa1ece831e2b967987d8e9ab27ae6d3e736bba9eca2026fbe80df783ede + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.31.4.tgz + version: 6.31.4 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-01-30T10:52:25.265964211Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: faecc2559d03392d27f0de1fb8a112b27b06b5a7a70f413567b8a03197952f02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.31.3.tgz + version: 6.31.3 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-01-27T16:35:14.604158582Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 78336587075fc78543b83d35dd5882e136d364c8a4e05fb8bb671480336abac4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.31.2.tgz + version: 6.31.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-01-19T09:31:34.41358532Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: cee839d9228034087d34d5fd5a7afe89e82959161bab57a9d2fe28e9ec4b3b4a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.31.0.tgz + version: 6.31.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-01-18T12:40:53.783015015Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: a93a152e27110a364d8cbdcf800a5698f2f8308edd97d0ef7742ee81b4c7f94c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.30.1.tgz + version: 6.30.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-01-16T14:56:03.151685149Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: e8744273a0ecf15359ce30944174f22f1649a8331d46a29ea274a586ff4ed8ae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.30.0.tgz + version: 6.30.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-01-10T11:29:32.042478908Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 4e92cec66c499298be8e7c24a881ca6d054399d602c9ed2319e9140fa86fd857 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.29.1.tgz + version: 6.29.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2024-01-08T11:28:13.102636712Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: a76d00c6d897524a59752b7809af579b2c862c580480216cab40bf9d1d0db1da + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.29.0.tgz + version: 6.29.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2023-12-07T11:59:31.077658637Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 52c4ced85d709c851ee7191023d2df37c48f25e108b1d196992b598679aeec29 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.28.6.tgz + version: 6.28.6 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2023-11-21T18:19:07.642277899Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 2ebf1eeeb613eca8107d08d8361cb1d900ff48f0e703badde222547fde42898d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.28.5.tgz + version: 6.28.5 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2023-11-08T16:53:26.141324376Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 205b01a2d71c72bddfc2b3c936f925215c2cbe2e3162ddd77bc1ef5b86a8118a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.28.4.tgz + version: 6.28.4 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2023-11-08T11:49:19.301764796Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: eb8a9f1d99860c939bf9ea7ba0fcf1a6f9a63b5ba342509843f4825a00ab677d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.28.3.tgz + version: 6.28.3 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.14.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.0 + created: "2023-11-07T18:21:35.621976212Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: d451ff73171acfd626c6bb59f32e79814a7a9a5b4a99e19e67fcc147241fa1fd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.28.2.tgz + version: 6.28.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-11-03T15:51:27.110166909Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 1fd5f419ba2afdf3034a7ee4e74f0b3f49584af650682adb3f68908b905ffa82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.28.1.tgz + version: 6.28.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-10-31T15:34:03.536261981Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 358926c55634fa45a3fe020019169014ec1e680449f1cc52ec3594cdc55105eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.28.0.tgz + version: 6.28.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-10-25T08:28:45.788027491Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: eb26d9bfad86cd836a13a6b3e5ad1ff793a699f52051e79dd77bffbf0dcc3120 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.27.0.tgz + version: 6.27.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-10-11T04:18:58.750921807Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 4fcc6348b2a4ef758aaab0f30a72c326dbeef2403f34e448c5a88926c96036c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.26.5.tgz + version: 6.26.5 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-10-09T18:14:07.691009465Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 2ed3bc9b0176ccb83e7fea53b4c4533dac7f510c7ad0c2cc14adce7957fe60d5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.26.4.tgz + version: 6.26.4 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-10-03T19:48:14.678954254Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 4e3429d342610089d28c4d79b3b1ed2240882df25230048c75812c34a7d59ddd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.26.3.tgz + version: 6.26.3 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-10-02T08:58:26.964892768Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: c3e02c4f0bb315b0ec922279c432fe0d9cc3fefe10f17b80a7ae3ef6de82c5cc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.26.2.tgz + version: 6.26.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-09-18T14:01:05.606542015Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: b4b81576ea5fe9947d7395da6076dc9f17abefced13e09c13fb0c67371588b14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.26.1.tgz + version: 6.26.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-09-14T07:58:16.934756328Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 1758f9a21aaaaf66aafcbbdbbbd59c199c1dfdaecbbf834d10076af16fcbd965 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.26.0.tgz + version: 6.26.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-09-13T11:16:50.764522081Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 21d586fd5e6c1a81275601dce897abc87fd5ed0d78b7fb1317af90c1291e6ebb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.25.1.tgz + version: 6.25.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-09-11T06:56:55.595491624Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 5bc11fd9566024172355555268431940cc23359b88c0d6ec6bd2c042a6d559df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.25.0.tgz + version: 6.25.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-09-08T08:57:42.945282498Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 6dfb0cbd813ae752437bc95b2656260915d326b9a1989f04c1b7434ec1158896 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.24.3.tgz + version: 6.24.3 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.6-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.6 + created: "2023-09-06T11:38:56.166878218Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 03ef34f84e949e85708bceeb3fb720f49ec52a93b2d54384ce43503366916000 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.24.2.tgz + version: 6.24.2 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.5-debian-11-r79 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-23T20:05:50.709121458Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 92a026d9f63e7970359c3219ebd9a1770e8cb8cbf00cc061d2ba85bfbc12a4b9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.24.1.tgz + version: 6.24.1 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.5-debian-11-r79 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-23T08:01:21.208760867Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 78394683a4d9447ebfe960ec888761b7c6b72cfa908aa1d06c1790622e35657e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.24.0.tgz + version: 6.24.0 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.5-debian-11-r79 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-19T14:04:37.563984482Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 49e6b9e5d095eff4a40f031a11c67df8e246c123b47189ae2d5c4f5e1ff16fe0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.23.6.tgz + version: 6.23.6 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.5-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-17T17:18:13.732746029Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: de994273955a36aa3fc31ef85248d47c16621e901cf1bdd0060f311f71f31ec3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.23.5.tgz + version: 6.23.5 + - annotations: + category: DeveloperTools + images: | + - name: external-dns + image: docker.io/bitnami/external-dns:0.13.5-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-16T11:21:47.181331425Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: e3aeeb80b597b2f7116162d3750831f32a1e99026bbfe4444480f78545d7e176 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.23.4.tgz + version: 6.23.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-09T11:28:21.146255738Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: a60b4523c9d7acd4e10e10f51377ad00dedbb098cf2a5444f9491a3a354007ab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.23.3.tgz + version: 6.23.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-08T16:14:39.906755646Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 086b12a45a55ff15f1ff020e19d933c3faa3baa94a786d99dcd0be712a1acbc3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.23.2.tgz + version: 6.23.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-08T14:47:37.843153827Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 8176c68314e9c66d5dded3820dafeed873cc06158324f6fc5bda154fb3c08963 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.23.1.tgz + version: 6.23.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-08T09:58:35.410835721Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 7cd30e7ff92e1d94d3efd0aebb4dc8e8bcc293fadc47164e29d39ad6f04edac7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.23.0.tgz + version: 6.23.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-02T13:07:21.273762025Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: b965a531cb2a927948b8f838d20b8c50aa7861ecd77dffbf34083b34db3e7f50 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.22.0.tgz + version: 6.22.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-08-01T14:08:44.58226313Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: b012da79c7ad9fee5a1bfcc001647aebf5083fcc58932e25c96a13dec2ed0e1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.21.1.tgz + version: 6.21.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-07-28T08:06:01.091973Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: bd03c80fac50536d31c2d683a61df9b2d14328fce829132d4daf0d62fd448b83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.21.0.tgz + version: 6.21.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-07-27T13:36:04.375177952Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 33a0bd3f56755fd6b77e322c3947faa1e8347304c449a35df87a2788f2cfabb8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.20.7.tgz + version: 6.20.7 + - annotations: + category: DeveloperTools + images: |- + - name: external-dns + image: registry-1.docker.io/bitnami/external-dns:0.13.5-debian-11-r55 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-07-27T06:35:02.133463481Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 2ef715185d22549728078c664fe24611185258202c7d70fb2173baa82e9509cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.20.6.tgz + version: 6.20.6 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.5 + created: "2023-07-26T12:05:24.540984255Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 680a90b7cbf2935625c337a0b790380ede4b8ce33471d929821d4983946de0db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.20.5.tgz + version: 6.20.5 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-06-21T10:53:39.810959763Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: e1bd0ee04a0dfdd20cc651faab932ea602e93690cb6e7baa8fb3caab7b229e76 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.20.4.tgz + version: 6.20.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-05-23T07:40:08.451674433Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 6b2cb6e7d36a38511672035810666d861a7e4632626ecc4ca257984a7f853741 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.20.3.tgz + version: 6.20.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-05-21T15:09:59.57355939Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 23bcc601dac01b1f95a4e6a99ebace85c2092bc57a4df7b79387208ebd174a6e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.20.2.tgz + version: 6.20.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-05-11T06:20:51.875930203Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: b40567d366bc0cd570f03318c53fcc3ffe499fe51e3826d81f7fb7a31332e964 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.20.1.tgz + version: 6.20.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-05-09T15:41:33.221920629Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 57656fdc8885bbfad1ce0e02ac59f5d47832c15e8e93dfa0aa575edebf973906 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.19.2.tgz + version: 6.19.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-05-01T12:03:37.289289064Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 20562ff857f1c187608092d00bb57220117c1c8ceea997bd6eaa7f6f9f7e135d + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.19.1.tgz + version: 6.19.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-04-14T10:21:34.665043212Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 525dc6630c7fa3d080ba090218b6b84aa26c5196f14dd5508cbaa0c6179e84ed + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.18.0.tgz + version: 6.18.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-04-06T14:14:24.609588849Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: fb6e5f79aacae3cc6579701ba5090095c5e6bdcabddbc5421e98d0781048dd0b + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.17.0.tgz + version: 6.17.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-04-03T11:27:40.264150546Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: f6076d6a57a8be90f0cc30460f613d23f37a594db367dc1f0c9617fceab2ac07 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.16.0.tgz + version: 6.16.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-04-01T12:05:24.69064084Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 795cbb63bee1d2a1b6b681e893a880c28b2b8072e717072c17c9d07e3633340c + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.15.1.tgz + version: 6.15.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-03-28T09:56:54.637863942Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 37519c0c8895b4e2a5571aa96a9d3095e77b3bce61c905f52dc9a5ecad47b89d + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.15.0.tgz + version: 6.15.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.4 + created: "2023-03-28T08:26:55.431361508Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 6096b1e945428537f665a6a1f7fa6f0b3186efaebf4bdcb72e44925c2e3897f7 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.14.5.tgz + version: 6.14.5 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.3 + created: "2023-03-18T22:40:22.807788297Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 879e7b8130772cc94a8112d64b662fa2615e03f80d65522bdbd47a57e1bf1c68 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.14.4.tgz + version: 6.14.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.3 + created: "2023-03-10T09:01:39.441524108Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: da1fe387ef5b3aba3504845739f504190ff973f7e955f21a706b26426b7ce2bc + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.14.3.tgz + version: 6.14.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.3 + created: "2023-03-08T19:04:46.12604721Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: e81894a39a9c5daeecd9ac74b2bd4827b92e72a0b40135fa59461e6be5906499 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.14.2.tgz + version: 6.14.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.2 + created: "2023-03-01T10:50:38.764859622Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 134f249ccb96223403396ebac97ffac04b42a5ae6bfa8e085b6d45c977f190e7 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.14.1.tgz + version: 6.14.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.2 + created: "2023-02-20T13:09:50.952216252Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 9702d71e5d63987f01e0d619af5eaa42bdb9ade4b48c8ccbbd9dfe99e8581d63 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.14.0.tgz + version: 6.14.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.2 + created: "2023-02-17T15:23:43.382710906Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: ce34bc5c3d50583cd8eab7393bd2286362d45ce245ebd4fa9a70f9abefc32279 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.13.4.tgz + version: 6.13.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.2 + created: "2023-02-13T15:40:20.296514205Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: f52aeb6c4319f0411660637f2e91c47e01a3dc4ccac55d62bf3f6e1534b76733 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.13.3.tgz + version: 6.13.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.13.2 + created: "2023-01-31T08:38:08.383632551Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 22e1380316a33a873fddf0cc6689a9778fe23115ab6677a7071b260ffeffb72d + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.13.2.tgz + version: 6.13.2 + - annotations: + category: DeveloperTools + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 0.13.2 + created: "2023-01-14T13:39:09.793922487Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 1cf7257fa715518d2648ddef68dd2ba0f2f3c8186ea173646f236d43825dd16b + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.13.1.tgz + version: 6.13.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.13.1 + created: "2023-01-11T10:24:30.771185851Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 53f983a9d35b79092a78fce8124fd19ae89d81675aad351b80c15f67f9bd1984 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.13.0.tgz + version: 6.13.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.13.1 + created: "2023-01-09T11:29:52.632078164Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: bd97d8de285584c098ab41957611a6ecee87c46ae393255a62a5cb06273d8a0a + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.12.3.tgz + version: 6.12.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.13.1 + created: "2022-12-19T20:01:40.4550143Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: d8a5f58f5b9c552693ef85729d85c6dba0a7e427145c36bb86302d652ee281e6 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.12.2.tgz + version: 6.12.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.13.1 + created: "2022-11-19T19:49:57.887338375Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 706dc0691259910bd1b0e7c9d6ed60913f79873683d9a6d17df6a55b7258a935 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.12.1.tgz + version: 6.12.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.13.1 + created: "2022-11-15T10:13:04.363767608Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 38560bfb0219b80bf45e18b410f5ccd7eca1830c13c9d47d0aafd01edb08f2a5 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.12.0.tgz + version: 6.12.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.13.1 + created: "2022-11-02T11:20:33.334101875Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 18f81e161946b86437b24a838ab9bf911677e288beded21420d61dab4dad9fbb + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.11.3.tgz + version: 6.11.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.13.1 + created: "2022-10-20T19:45:16.404410858Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: dbf1bd0006d0203bb98881d02ae9f3dc48c2c1e0ebace87898cc7526a4752a59 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.11.2.tgz + version: 6.11.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.13.0 + created: "2022-10-20T18:35:40.970068243Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 96c0d38f0314e018515b0bba1d78035c3bc5d3e55d27d1b5e9569ee14a9b417b + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.11.1.tgz + version: 6.11.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-10-20T06:55:24.577311496Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 351b8ab6d8eeb30f2d1aacd65deeaf656434e0a8a6b6fc50581d58fc5e789a10 + home: https://github.com/bitnami/charts/tree/main/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.11.0.tgz + version: 6.11.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-10-04T09:11:32.873661844Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 68f0bd3e0236ff8190449d5bb1707a1eeca7d4725b3e75c716c404746419e955 + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.10.2.tgz + version: 6.10.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-09-28T07:47:55.515451984Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 1315687c6a5c8ebbf889d8268c38e7b585f3fd0aac483eba9437bf777703e34a + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.10.1.tgz + version: 6.10.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-09-26T09:13:32.56227492Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 612ec153aadf30dd75558ed658b1ddb81e8b22d35c143600eae71b8e38b116c0 + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.10.0.tgz + version: 6.10.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-09-16T13:40:07.310445109Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: e5703cb7f184667ffe4abde8ec646f3d0bdfc0cb47a91815c7b78046c151aefb + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.9.0.tgz + version: 6.9.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-09-08T05:29:52.302249785Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 0d43fdb8959d73288c099f3fe90320ce1d4a239b29737704b67cc5b5401745ad + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.8.2.tgz + version: 6.8.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-08-23T22:01:05.5801374Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 7a7c1c0429a58e6c04a40f80ec810a156951a8638dcd1b8b6d7be0d78c9b403c + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.8.1.tgz + version: 6.8.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-08-22T16:26:08.75307656Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: facc5647107925661f6238952a41f38f90fcd03851f543b4b49d368d45111c7a + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.8.0.tgz + version: 6.8.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-08-09T05:28:26.655843469Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 5ae5646bae96c4f6875d8fbc8646859fcabe98923886910b8bfff74062546e47 + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.7.5.tgz + version: 6.7.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-08-04T14:33:46.450253626Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 2c324206638400b22a5f9580f2999635875019eb9356f1747b19604592c5f088 + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.7.4.tgz + version: 6.7.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-08-03T08:29:03.577719225Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 30ef5f180a07fe9ccede4e8b244a9c375c72d3a30787212b17c496411ec292e8 + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.7.3.tgz + version: 6.7.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.2 + created: "2022-07-27T17:20:24.563137807Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 345db92108a84e64b4f087418d2cdbfe4b07be436eb7439444c3fe20621957bc + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/containers/tree/main/bitnami/external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.7.2.tgz + version: 6.7.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.1 + created: "2022-07-24T19:43:37.156131378Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 0f657d55c3d1ee3d339cd7c68def590cef9a1d423587ae692e672039ad7bc03a + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/bitnami-docker-external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.7.1.tgz + version: 6.7.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.0 + created: "2022-07-20T15:15:14.496559311Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: ec6cb430336c7e3b561b556491f42bc10b14509ec3ef4766cb8c441ecf58d9cc + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/bitnami-docker-external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.7.0.tgz + version: 6.7.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.0 + created: "2022-07-13T08:05:20.853407873Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: 2f1b7bf0b853c6bf9767316103952b908855709ee23365c820c1f0d56a8fbcb2 + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/bitnami-docker-external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.6.1.tgz + version: 6.6.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.0 + created: "2022-07-05T09:11:28.446816832Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: sha256:5d77048ede4b1f85c6656c28b0099c5656c10e4d3168213947af7423d876f7d2 + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/bitnami-docker-external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.6.0.tgz + version: 6.6.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.0 + created: "2022-07-01T10:13:18.725510726Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: sha256:b7cce4b8b426186a400f493835a42da7fe61ad32f460dd7d4b63a581b6116e59 + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/bitnami-docker-external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.5.7.tgz + version: 6.5.7 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.0 + created: "2022-06-14T09:32:50.127258653Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: sha256:0e479b20b855eb3b2b05a45422ff75203c16b53a81ec604b3207fab50dda4b56 + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/bitnami-docker-external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.5.6.tgz + version: 6.5.6 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.0 + created: "2022-06-10T22:19:54.036205057Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: sha256:cf166684b69f5a21f3d71aa57a26d2a47150337b8f81f27749af92228bd2b96f + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/bitnami-docker-external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.5.5.tgz + version: 6.5.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.0 + created: "2022-06-10T05:29:19.403184383Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: sha256:3e14cd5e56c4f2ee03f2878022f9920887e23dcf49b479ac69d286f8036b164a + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/bitnami-docker-external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.5.4.tgz + version: 6.5.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.0 + created: "2022-06-06T22:26:06.301441593Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: sha256:9e2120fcdba094ebdd3258dc5561a6df73b55cba9fd58d04c8fed803349d9fd8 + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/bitnami-docker-external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.5.3.tgz + version: 6.5.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 0.12.0 + created: "2022-06-04T04:33:24.427903373Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: ExternalDNS is a Kubernetes addon that configures public DNS servers + with information about exposed Kubernetes services to make them discoverable. + digest: sha256:0be5ae5ea58304b54eba590f8f23e65743ac9f716173cb238ce382c5d6acefae + home: https://github.com/bitnami/charts/tree/master/bitnami/external-dns + icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-220x234.png + keywords: + - external-dns + - network + - dns + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: external-dns + sources: + - https://github.com/kubernetes-sigs/external-dns + - https://github.com/bitnami/bitnami-docker-external-dns + - https://github.com/kubernetes-sigs/external-dns + urls: + - https://charts.bitnami.com/bitnami/external-dns-6.5.2.tgz + version: 6.5.2 + flink: + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.20.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.0 + created: "2024-08-01T14:41:00.604410037Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 95772ed7efe63a85d37e2db6d812e05799fdeb5a71052102903f18dad7668f91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.12.tgz + version: 1.3.12 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.1-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-07-25T06:25:43.691225816Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 9108349a1c0d17aeab051955b75feec9c113ba83b59f7f1c9036dcf604e34ecf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.11.tgz + version: 1.3.11 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-07-24T06:35:39.307546198Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 13955d3a13ec02875ccce24b98ed0482f6d8cdf597e2bbc32424806dd6599883 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.10.tgz + version: 1.3.10 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-07-23T23:00:22.035779441Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 5072eb3b23c167982faf9c4a36c9815a88ef6b21d2d020496971a4a90d47c3bb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.9.tgz + version: 1.3.9 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-07-16T11:17:09.390714441Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 99e083287a041cb73ff31e59b021bcd6fb1001865fef399281b84c5ee15d3071 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.8.tgz + version: 1.3.8 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-07-03T07:36:48.393923476Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 522d3e3eb2a4477dbc84dbc0cfed3f369e8bdc81e71b2d9ff65f6f169997fabe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.7.tgz + version: 1.3.7 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-06-18T11:57:23.949911398Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 206df10d48091a9dfa6f67f6eff42b33063d4cb75a094b9ab497422ab74b0a53 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.6.tgz + version: 1.3.6 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-06-17T12:25:04.93261055Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 4e42cf0a5095b6afccdfe1486cde98a8b4d9a5d4bb76d73b5e2e28bc11444934 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.5.tgz + version: 1.3.5 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2024-06-14T18:46:40.712494313Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 5124714b764b90ee06045a92deb5bdfcfa6b5ed463e4ea84ec23043388a4f90c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.4.tgz + version: 1.3.4 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-06-06T15:25:47.566464754Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: df8cb5d030c3f988125dc97c5ad2256185123e750bf9c11e3848b252259cf8a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.3.tgz + version: 1.3.3 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-06-06T12:52:44.326409375Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 42fa49c7aefb168f6e1d923beddb1c9fab8d2e264a040561303bc9b9eb7940a1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.2.tgz + version: 1.3.2 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-06-04T09:44:59.210672145Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: ea1668b15583da1d708d3d73c975973a6c4ec32c92ac4be3a66f84729c3f90c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.1.tgz + version: 1.3.1 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-06-03T11:32:10.55173153Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: cb4d5fb9a94d2dbf4b759b9c7c288d470ade43f3e217fb49a54d5f2d056e6676 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.3.0.tgz + version: 1.3.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-05-23T09:44:39.741136949Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: c5367735d81ddd007d55e8609aedd4c35834e785a24417f920ff3d65846c2687 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.2.1.tgz + version: 1.2.1 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-05-21T14:20:27.444672969Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 5424c9c494cafbaa0dcf6c22712049101ef169df9c4f72a173b1d9c44ec535f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.2.0.tgz + version: 1.2.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-05-18T01:15:14.527195601Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: f955fb7b109589b5ef246bf34b94fe32b54901378b6ecf184fd9f647d91c4112 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.1.3.tgz + version: 1.1.3 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-05-13T21:18:51.172698778Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: bba0358f28ad8f675fe187aa0a09fa27ccfb61192c1337b63f3ae2830015fa8a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.1.2.tgz + version: 1.1.2 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-04-29T12:17:21.40941652Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 8d0b6fc340fbaca389d939e0fe81ce93f3a644a7e898c9703deeb9efe9a47030 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.1.1.tgz + version: 1.1.1 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-04-25T11:30:20.013000985Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 272cbfd27f929659a7396fd8210c578324e2ad8132be31efc09370f84e8e26a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.1.0.tgz + version: 1.1.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-04-22T06:49:48.351817225Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: cdc2e8a58563af26e10a51e0c01f913d27c099713557994000510ffce1c6ea0c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.0.2.tgz + version: 1.0.2 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.19.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2024-03-20T12:15:06.033034523Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 949b3b88f3fd06d4257590c8eacd1547e31256de4ff97b181a0c80ad8bdc4a77 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-03-18T11:12:57.915513796Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 369b6968f692cb3c5f9215828cf1ac7b10a28a2fd400f698c1aac586b623225a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-03-08T08:02:11.498925496Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: f08ce3ff12ce4a388a0b86225f7acc006a83096f6e70f7c1488712c77dc90c9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.13.0.tgz + version: 0.13.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-03-06T12:36:08.415571363Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 2e692e64f2a8190626fb77b16cb6cf7542a0fb43f7feb8989bf4e8ee510dbf4f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.12.0.tgz + version: 0.12.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-03-05T13:13:24.459222253Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 8d30d980b23b8fb4c95debc3c5c98110c91049a94bb1785c77f045df5f129eaa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.11.0.tgz + version: 0.11.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-02-21T18:00:11.362783775Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: a26c6d4607558bd7c2a5468ad27a1423e68eaf751efd369cdb23486b79b3fb50 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.10.2.tgz + version: 0.10.2 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-02-21T16:29:34.299133635Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 6e3863a9f51cc82f467865bbb4e2af424ff8b70bc1df50774f077a36c4cba023 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.10.1.tgz + version: 0.10.1 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-02-16T10:06:18.594177036Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 8c7f9312d830ac4fc85bac29b16b34a384febf0688ea67d7ea3ecbe8256b9f3c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.9.0.tgz + version: 0.9.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-02-07T17:22:41.012643187Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 442f6b421fbf7c4d57bc2ae0763793c8f8c3d1fb543d6709e5e18a56ed8f320a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.8.0.tgz + version: 0.8.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-02-05T10:33:03.255183438Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 69470748797a46dcef0ea034a60f71465b0246d7f0bd585b40b1ec24d6d93f3a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.7.4.tgz + version: 0.7.4 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-01-30T02:07:03.979297794Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: c2aff3320da46d0b26ec604525a0943ffac7ad411c33a1b3c782e11e75729dd0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.7.3.tgz + version: 0.7.3 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2024-01-27T01:23:34.487886142Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 61afac0e7a66657755e3678b1e6c2ddbb29f536a6b0bb62bdb0222f4df5c6b26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.7.2.tgz + version: 0.7.2 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2024-01-22T09:42:30.099331187Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 424b69bd3289b4694821c0716f3188fec7c1d6686b798f1e2f2d9a77f65da03f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.7.0.tgz + version: 0.7.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2024-01-18T21:47:37.211821761Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 5d8ed61bc9f4cd3f77849fcc62b6833c79a7274e1cbbcc1ac467a8e50d81d930 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.6.1.tgz + version: 0.6.1 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2024-01-16T09:37:59.851458562Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 29ed8988ea01026d98a44dedf5e6e96193b91d0d874c9961f4f697a72519040f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.6.0.tgz + version: 0.6.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2024-01-15T11:11:07.76193893Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: cf8d3c334e4434f948cec4ef617f3f3ffd7150b667e37c0c0839cf2dd5c630f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.5.4.tgz + version: 0.5.4 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2023-12-31T18:26:17.034742749Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 74195b2517ad0745684f09ad7dd9944d60d713c431d7299d5da3e28b37a5d572 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.5.3.tgz + version: 0.5.3 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2023-11-21T18:24:04.62497408Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: a26b4ff414f02e3954d08c65e26220e4cbeacab09930159f3e4e060011cb3353 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.5.2.tgz + version: 0.5.2 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2023-11-20T12:46:19.115687061Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: cce701b25cf600bbd5902e976442f5e6beeebed84900e2987752ff75edca18e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.5.1.tgz + version: 0.5.1 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2023-10-31T15:17:08.174132518Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: dcffcdcfdd5165296d8fbdb6820395ab3ee3ce07f54e1607656d4426e4dea777 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.5.0.tgz + version: 0.5.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.18.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.0 + created: "2023-10-24T21:01:44.124845202Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 38b72de78152918cc2e7e8a32ea07e3b97135a0da912f2e520bfcb688a6186de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.4.6.tgz + version: 0.4.6 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.17.1-debian-11-r120 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-10-12T15:08:05.689060658Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 3022b31317c5094a7f60c5f9517c2870b0c515d77e11781c52980981e4480bbc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.4.5.tgz + version: 0.4.5 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.17.1-debian-11-r120 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-10-12T10:45:55.968419704Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: f004e167e7fe831e9dfb0a33f5a77f234bc690f208cd24a6993af4a0fe817dfd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.4.4.tgz + version: 0.4.4 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.17.1-debian-11-r100 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-10-02T15:07:30.498788423Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: a59b6c15202764a00dd5d162db3bf25720524b1b5b29a4c65eb9f39181e0100c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.4.3.tgz + version: 0.4.3 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.17.1-debian-11-r100 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-09-18T15:41:25.385748992Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 33ca74336813563b7556ec673094e44e55c7c865dbba7159b28bdde61316a278 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.4.2.tgz + version: 0.4.2 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.17.1-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-09-06T11:18:32.314282577Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: d34f90fe97d0c208d7b47300b6ebe8ebcf81e2105840956dbba88a9d55da1fa9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.4.1.tgz + version: 0.4.1 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.17.1-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-08-22T15:09:05.534684531Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 8cbccac9c6a66d03d207ff07aead0caffe13704b51cdccfa0e5cbaa83703e3d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.4.0.tgz + version: 0.4.0 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.17.1-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-08-19T15:09:34.973328928Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 1bb92ee8e4d1e1ab31e5e61497fb098e061953c932945c6c632f1ebeff042293 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.3.8.tgz + version: 0.3.8 + - annotations: + category: Infrastructure + images: | + - name: flink + image: docker.io/bitnami/flink:1.17.1-debian-11-r73 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-08-17T17:19:54.490354703Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: e49ef880bf85eab67da72a2e6bdb2e236351161ef346b38b24009fdcf7f680dc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.3.7.tgz + version: 0.3.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-07-27T00:13:50.699643309Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 698830ea1f72cff82b7360042437c576c1e105d3aa5e2f83a824fef08d2728c5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.3.6.tgz + version: 0.3.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-07-19T13:54:57.226372335Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 0966970c52833077bbb21aa74be667b3324e4e6e0e91396464a74b4720259ad5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.3.5.tgz + version: 0.3.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-07-21T14:30:22.757348225Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: d74f98b8444ee3c7fcd41ae2fa6325ef66b09ea4326cc2bbde1934b883a6d0c2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.3.4.tgz + version: 0.3.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-06-25T14:36:11.776705914Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 09e722b68159a1523eb6ad59587764e769eca718b0a6d54dfaef4266644fa342 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.3.3.tgz + version: 0.3.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-05-26T14:23:12.859335667Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 940f81d5f7ebb5249365087e71cd539ab3477dda9234224b2ec5d72b9ca00cc5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.3.2.tgz + version: 0.3.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2023-05-26T12:28:44.140684436Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: 19329ab3b032160badae0b37ed6f264b351773428e989c2f3bfc6e83240c8357 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flink + urls: + - https://charts.bitnami.com/bitnami/flink-0.3.1.tgz + version: 0.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-05-09T14:57:00.92955447Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: ea6fc285937e35a125537d7d0619f0dab04f9a628bc22622ce137c9784d715dd + home: https://github.com/bitnami/charts/tree/main/bitnami/flink + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/apache/flink + - https://flink.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/flink-0.2.1.tgz + version: 0.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-04-12T14:17:07.453174775Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Flink is a framework and distributed processing engine for + stateful computations over unbounded and bounded data streams. + digest: c3cd1047547fe371432a56a021d955a0c8e90929caba2683929359e0d03f3b63 + home: https://github.com/bitnami/charts/tree/main/bitnami/flink + icon: https://bitnami.com/assets/stacks/flink/img/flink-stack-220x234.png + keywords: + - flink + - stream-processing + - batch-processing + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: flink + sources: + - https://github.com/apache/flink + - https://flink.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/flink-0.1.2.tgz + version: 0.1.2 + fluent-bit: + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.6 + created: "2024-08-14T19:50:58.694954799Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 46ae1e3b555a2d57ab12b92aa0976eefe3cee4a99e5ba77cc7db105db3d3a70f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.17.tgz + version: 2.3.17 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.5 + created: "2024-08-10T03:06:05.199935349Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 899b6cbf8b43f1fcbc61f51c53b79c2c3c7a40fb811d8808d68a40e9cf313010 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.16.tgz + version: 2.3.16 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.4 + created: "2024-07-29T13:24:49.390906666Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 47630687c8fb204c1e9f781872fcd543b29b492ecc5438268fb5e46b9ded8ef6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.15.tgz + version: 2.3.15 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.3-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2024-07-25T04:11:56.019703002Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 0ac4f8605480f4bfcee4b91160b17357432e87f62216a0045a51b346a027e006 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.14.tgz + version: 2.3.14 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.3-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2024-07-24T07:43:41.818244109Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 2318c781ef4506ef98cc4be1beb9388318965ad8149acff950fd661588886498 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.13.tgz + version: 2.3.13 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.3-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2024-07-24T07:12:39.193950575Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: c8c11ec0a2d52aebd36d6c065cac39e21f13c25fb8717121bea10f5c19737963 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.12.tgz + version: 2.3.12 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.3 + created: "2024-07-17T06:00:46.183394727Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 127ea0e0f4fc3e1a723574a5e3a850243d9922f96a952f3e392c388ce2cc5757 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.11.tgz + version: 2.3.11 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.2 + created: "2024-07-16T11:38:46.450831714Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 5c83bedc766e019f910db134294a10f46444c85e72d6e3c2541dc6a6ccd0163d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.10.tgz + version: 2.3.10 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.2 + created: "2024-07-12T05:03:44.181330511Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 4ac6aef6c6a596cc9358e66731902b2ac964f046c6dbde3885ca769ae353ddad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.9.tgz + version: 2.3.9 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2024-07-10T14:16:05.642689312Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 36e6833ee0155e2779efaa4e0cca3afdc0e0f3c5e51db87185f39df3e9851d31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.8.tgz + version: 2.3.8 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.1.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2024-07-08T21:01:11.093474791Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 0f2f7ccb25dd70cc2fc4c398191965b92ff925c9c61ccc45e9067921084cc4aa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.7.tgz + version: 2.3.7 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.7-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.7 + created: "2024-07-03T07:37:05.272234768Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: e2ff48b7536f4b0e2a70124a026ff7c2df18976b401f52870895b9645e57b701 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.6.tgz + version: 2.3.6 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.7-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.7 + created: "2024-06-18T11:55:52.913503761Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 9b433844f618855977a49c03cad3dd2b3d7faf2bca2e96c49b10a9bf79d407bc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.5.tgz + version: 2.3.5 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.7-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.7 + created: "2024-06-12T16:22:32.946650533Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 5f77da90fbc33618a17d7f5d23714a83faa5a7e4431cf475cf2e3820b1fcb325 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.3.tgz + version: 2.3.3 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.7-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.7 + created: "2024-06-08T00:01:50.632304133Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 97325e1631353ace9e3f32a143033a81eb43de0c080fe046cea0ece02e883d3c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.2.tgz + version: 2.3.2 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.6 + created: "2024-06-07T05:30:00.408868937Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 18cc9af374972740067695ae7aa2ce333af0ef33e5aad07a8a6c814ddf907cfd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.1.tgz + version: 2.3.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.6 + created: "2024-06-06T07:00:12.109147802Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: f8d8a4ca39dc35fc74ad67843ea821863e05313e9304a6fc0f9129e73deaf5a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.3.0.tgz + version: 2.3.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.6 + created: "2024-06-04T09:46:43.094382923Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 293178884713d309c59358e28a0bf35c55cb4bdc8cb15e946149e0cb26cd7418 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.2.3.tgz + version: 2.2.3 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.6 + created: "2024-05-27T00:04:04.786753909Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 47bc6881d9fc5baf319ba973df450dedb3d0ddace6e3c5fbde943b1df99b53d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.2.2.tgz + version: 2.2.2 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.5 + created: "2024-05-24T15:49:35.604207248Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 1fde8724de11c547861646637b18529f3ce8d41f1da47ac36116a77cac9e714b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.4 + created: "2024-05-21T14:19:59.608469159Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 3771d592a09442c84165294647c0a5c4ecc9fe872501239b386e89932d677e21 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.4 + created: "2024-05-21T06:06:55.626413539Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 1920b5f5fd1804d2cec2320c430c36837d6cbef88ce3b0f3cb94e1dd330f4422 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.1.5.tgz + version: 2.1.5 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.3-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-05-20T07:40:01.85568084Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 2ee660d81376ebbad788b1540dc4fec9345ca60d7c2b062d97b0e87ce246ed02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.1.4.tgz + version: 2.1.4 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.3-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-05-18T01:17:41.772695702Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: ccb62bf53eb4aaf8542c696b4fe20f24b4869ce8b0e2345c0a86bf330787c938 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.1.3.tgz + version: 2.1.3 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.3-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-05-13T21:21:12.088289463Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: f2fd6f32db1f8ad1b70a81a847b882f4eb763122305cd5839c85f0426fef88d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-04-27T17:04:56.561736085Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 2850306f9abf443c38b70cc9cf72df07a01496202b990fe2e3222f3981b3f21a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2024-04-23T08:14:51.918202421Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 59f43613a1e6eb7580e7fa6d37b846f4651cffa63f7afdd2d21c291261a07832 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2024-04-12T08:16:34.562543221Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 015db221668093ee3f8fa30326335c84eae9dd32486ca9da57c2502c61c13a7a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:3.0.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.1 + created: "2024-04-09T17:15:57.685551672Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: e647b3fb77cd8a70cc111b5126ccc50db9bda77cc48909b8d6a1f4d5d742fc72 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-04-01T17:51:11.880819842Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 7f46322fe18262d32929b5c25ec1fbca796ffe1d21e6cdcefc8220bd0c1a7a03 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-03-12T10:27:25.115928676Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 36a3879fa2ec5251d4a66c59f1f68a92ac750dd8c70ac93cc519e176ce813573 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-03-06T10:52:27.848181401Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: d5813a87a46ab1e1af8548cb779d6b0597caf88c90649a1ef4ddf4a44f357823 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.12.0.tgz + version: 0.12.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-03-04T11:44:36.400562222Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 21264fa8770fb210a640e0f97a432815268e9a8e0286dd7460b85a7415a6031f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.11.1.tgz + version: 0.11.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-02-27T11:01:54.903118704Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: d3963df75a8fd8b6fca339e187c986c55a4fc409b1eb272c1360d8a465899d9e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.11.0.tgz + version: 0.11.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-02-21T17:49:45.076006187Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: cb76ce9d7cd657ea6cff87ca5ad6eedf91576675cb3415a9e5f9db1187e9941a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.10.2.tgz + version: 0.10.2 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-02-21T13:23:49.265652803Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 827dced617a374dec9d903b80d44b6e5448a7ae8bf5d9d0d555f65f0e79dd422 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.10.1.tgz + version: 0.10.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-02-09T09:38:24.658566293Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 63eed19e2c23531175d0b1911a721d1143273928b8500c6a190fd28d8b479896 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.9.0.tgz + version: 0.9.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-02-02T16:24:42.603727645Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: b5c25ebc117a6a821f1f6bf90f8bf99543a29b885aa56cd0dc356373d27526a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.8.4.tgz + version: 0.8.4 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-01-30T15:30:03.774435217Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: fb564f2410cd0830e6298340ec5c855355b2f46d5d89af80cadeba22661161cc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.8.3.tgz + version: 0.8.3 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-01-30T06:36:58.775970112Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: ee91a196368b1c9ebaf6a9e06a4abc3d7c025bd36eb465678e296612b144becd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.8.2.tgz + version: 0.8.2 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-01-26T09:10:20.341220753Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: ffd0a6157f8e8712517ad9c52c5b017f65e3578f56730f9df1dff3928f53cace + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.8.1.tgz + version: 0.8.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-01-19T09:29:28.043937235Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 1829c263f353201e73754ccb3b65ce5b258f0d9abbad89696a3254e9b356e61d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.8.0.tgz + version: 0.8.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-01-18T10:27:54.27341299Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: a05a35af3311abeb11edef19de30f9a3727425e2ad9df838ec59a9fd38e8547f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.7.1.tgz + version: 0.7.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-01-16T11:15:44.458141891Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 36089d9f88573a2816ffaed50a6e63fd43fbd09aef9d30286c32f828ef7c5f88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.7.0.tgz + version: 0.7.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2024-01-14T20:00:32.319236989Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 9009c09289b7eefbe2b20cb2c62ab7a76ccbb1f07964b5bfe2b81cfcc36825e1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.6.6.tgz + version: 0.6.6 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.1 + created: "2023-12-22T11:07:12.797469543Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: e27143d2532f045bcfba725b43e61db9f597cc3babb74f8734fa2ed0dd751f73 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.6.5.tgz + version: 0.6.5 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.0 + created: "2023-12-05T12:10:50.255359119Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: c7b141ed2b96e77c0942744c144db275b1703760fde075ff6fc3d83c88ae0330 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.6.4.tgz + version: 0.6.4 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.0 + created: "2023-11-21T18:29:39.379217174Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 209846ed8e0509e67e1d7765332b8c6950c33a5b43250ccd1d57e447ba569cb6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.6.3.tgz + version: 0.6.3 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.0 + created: "2023-11-09T09:25:26.634746331Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 40c4500b41f3fb3a6b9e3d43da1b59b64207b463aa0b7f023c1c98a96fbf67d9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.6.2.tgz + version: 0.6.2 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.1.10-debian-11-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.10 + created: "2023-11-08T16:17:19.888590841Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 349a0b9cd1f60e5b3fd506182439912a362d7ac44021c3c1afe5308754ff2847 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.6.1.tgz + version: 0.6.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.1.10-debian-11-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.10 + created: "2023-10-31T15:16:32.684918239Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 82bb72baddf0dc35584a58edd0ffed35ba03a73db8baa1f836494fa49a939431 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.6.0.tgz + version: 0.6.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.1.10-debian-11-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.10 + created: "2023-10-24T00:12:48.217807989Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 33e02ad62117dd9d2e57e77df9384c6a9cf3ffe3d7441632e8ce96a001b58950 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.5.5.tgz + version: 0.5.5 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.1.10-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.10 + created: "2023-10-15T10:21:41.80367778Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 696c2cf94e521fd5e1ffeab61ca368e1d9b1391a3c3c486b1d141982c9689514 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.5.4.tgz + version: 0.5.4 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.1.10-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.10 + created: "2023-09-24T00:14:05.979046494Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 16c93f1c71e8961c84cd3e5705afb15d29a3715d854b3b3cceab786dc2d84c54 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.5.3.tgz + version: 0.5.3 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.1.9-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.9 + created: "2023-09-07T10:37:46.678520099Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 2385914af6ed4099813fa2b0bfd9d3390bba79d9958840ca8ca59c376067c2eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.5.2.tgz + version: 0.5.2 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.1.9-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.9 + created: "2023-09-05T11:01:49.711562348Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 8f1bfc0ee5e805e6ddc04f5c22b1ee097230cfd7efe55dd75c2851ef54c42782 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.5.1.tgz + version: 0.5.1 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.1.8-debian-11-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.8 + created: "2023-08-23T09:51:33.545204485Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: bea3097e427af91771be005350c01b9cf9a094b60de79abb56b95ade231889c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.5.0.tgz + version: 0.5.0 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.1.8-debian-11-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.8 + created: "2023-08-19T15:19:58.261658756Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: a90c8e380fb6eaa847123623f9f4d154bf8293f07d0fc7ecd4e76c9900e191c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.11.tgz + version: 0.4.11 + - annotations: + category: Analytics + images: | + - name: fluent-bit + image: docker.io/bitnami/fluent-bit:2.1.8-debian-11-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.8 + created: "2023-08-17T13:26:29.378021422Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: dc81e26515274785d52c7123d5c6f71fd91ac7ec55c800441cc7623cf043ecba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.10.tgz + version: 0.4.10 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.8 + created: "2023-07-25T10:44:02.961107028Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: e380bb0446a24f41ad4c90994c54a34e77adbb0587b79c92d4bcd35253314eac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.9.tgz + version: 0.4.9 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.7 + created: "2023-07-21T14:26:04.51280901Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: d40651b95512b8c5ea40d4f7ae250f27466b6550e0fc3424c5db8c6bac38b116 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.8.tgz + version: 0.4.8 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.7 + created: "2023-07-13T05:20:27.052546714Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: e07e254c356df021f17d11a7b33f24976a9a39ea277af4e870d3141a5157be4a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.7.tgz + version: 0.4.7 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.6 + created: "2023-06-23T07:38:00.500642447Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 200449a39239c6ba195c4e0ecaf0a8fd863e4e3e9f3a814e393e3f716be3b171 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.6.tgz + version: 0.4.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.5 + created: "2023-06-21T10:52:32.844789374Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: f599e81bc3400988dc3c109a989153d18163e09bf87cc2e846efd461df3b5c94 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.5.tgz + version: 0.4.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.5 + created: "2023-06-15T04:55:16.023270018Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: fdebdcb826a99cf1157fa93f70b4895bbffac9f97c80f8a87c1889f76a6cc461 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.4.tgz + version: 0.4.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.4 + created: "2023-05-26T15:18:14.824135175Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 531b8736257d28050c76510b39600af22027dd9d4aa6af8dc556d326c560c63c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.3.tgz + version: 0.4.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.3 + created: "2023-05-21T15:49:33.184942606Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 627a3105e46b6f1e6089d2ea50e7a224665da982b819edd36a738641e898c9a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.2.tgz + version: 0.4.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.3 + created: "2023-05-16T02:04:07.708194264Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: a6aa7b95d82d8278bcde7e3519b885426acf8910c29b71a9104b80c4a8d76e7f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.1.tgz + version: 0.4.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.2 + created: "2023-05-15T10:02:17.005788404Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 755391b2cfb37aaaa9a0f7652229a60416d1fbf856e338e95e491eeb3f07f782 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.4.0.tgz + version: 0.4.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.2 + created: "2023-05-09T15:33:41.149676573Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 45b841c2ab61c7a67afe58ca0bf0486110b26b6898598c29bab2b533e29085f9 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://fluentbit.io/ + - https://github.com/bitnami/containers/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.2.1.tgz + version: 0.2.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.2 + created: "2023-05-04T15:06:58.676058985Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: 26aa0ef43176e841c442bf1078a5d841adb61b5adcd0d6cf8eb3f1382a491d86 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://fluentbit.io/ + - https://github.com/bitnami/containers/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.2.0.tgz + version: 0.2.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.2 + created: "2023-05-03T12:26:11.383641976Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: e364880cbcc666aaf614f9d2402d51488206eb9ac138d8beba03355b94cfb066 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://fluentbit.io/ + - https://github.com/bitnami/containers/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.1.2.tgz + version: 0.1.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.2 + created: "2023-04-29T06:35:49.761305466Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: acb819bdc02c217192eb86d797e794233a74e96ab7da899ece010f56b1470f9b + home: https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://fluentbit.io/ + - https://github.com/bitnami/containers/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.1.1.tgz + version: 0.1.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.0.10 + created: "2023-04-25T17:42:50.636206359Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluent Bit is a Fast and Lightweight Log Processor and Forwarder. + It has been made with a strong focus on performance to allow the collection + of events from different sources without complexity. + digest: a5a18c084209fc42c2bb09af636b989893b424a5029ab97d398b4cbbef42b47d + home: https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit + icon: https://bitnami.com/assets/stacks/fluent-bit/img/fluent-bit-stack-220x234.png + keywords: + - fluent-bit + - logging + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluent-bit + sources: + - https://fluentbit.io/ + - https://github.com/bitnami/containers/tree/main/bitnami/fluent-bit + urls: + - https://charts.bitnami.com/bitnami/fluent-bit-0.1.0.tgz + version: 0.1.0 + fluentd: + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.1 + created: "2024-08-19T08:18:54.080829115Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 3f4f26a9554cc972d34a5387aca94926d610f46d44a3574e2bf2d246fbd7741b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.12.tgz + version: 6.5.12 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-07-25T04:33:03.09281054Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: d4e41afdcdc0c8dda20375869c9ac296e2d93992d5ef2dc924521f79afd91bda + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.11.tgz + version: 6.5.11 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-07-24T05:10:41.929812482Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 0b9305fc0357c36a63a961e812372545224c0ccb28eed91666e65afe447731b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.10.tgz + version: 6.5.10 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-07-24T01:50:02.526635702Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 1efd67a358b90a6f759b00cc4ef89d4e5a3f3a472ca877d878fade50d3933318 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.9.tgz + version: 6.5.9 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-07-16T11:38:59.37528915Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: cb67a1b60419f47213ae36354887ac9f9bf9bdcf42efb3c6a4b2335554eb0b37 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.8.tgz + version: 6.5.8 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-07-03T07:50:29.676600728Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 5c52d83ff3548ecd4a6282528ebdd13937685d1cf7239f19877d39024c9a6e48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.7.tgz + version: 6.5.7 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-06-18T12:06:42.331896053Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: d5e13be7ff3473be5ff714ba1ffaff2e84a38095b2fb468e69aaad9724d4da77 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.6.tgz + version: 6.5.6 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-06-17T12:36:30.301541802Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: bdfce274f3cb6d5ec29cc3e745c4e3ee992ee5badb891fc77fc38817f9a53443 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.5.tgz + version: 6.5.5 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-06-13T09:45:49.280704651Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 309f560660cb015e627910c5fd81b1f27280cee6cd2cad450551c758b3841f07 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.4.tgz + version: 6.5.4 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-06-06T20:39:47.467292988Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: b4f8ce49816833eb7b3f7c1e511eed7ce04ebcb8ffe98ec3e40b82963e2052b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.3.tgz + version: 6.5.3 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-06-06T18:29:19.862611952Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 6b02d62d1904d1a4fd3b6928b959c3600081414243f696c1c9277bf7d1d0b56e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.2.tgz + version: 6.5.2 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-05-30T07:46:24.921449725Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 692bac9b246a506efedf08357c2ccca6a88e0e8f24dca88d7eee44f067b3ac1c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.1.tgz + version: 6.5.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-05-28T14:26:29.745854451Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 4204ada157b44af2e65598ed47876a8cbb055621eda2717cee0d2fd6e82b0031 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.5.0.tgz + version: 6.5.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-05-27T06:49:39.377578128Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: b79f70863930cd3a96052ac83355f9019ecf72838a78e63efb1543f3dbe712ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.4.0.tgz + version: 6.4.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-05-23T14:35:48.776583336Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 623eacf524f9fc7b59c72a43a0115470ebaa7eb1d476d58aa921139922a39941 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.3.2.tgz + version: 6.3.2 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-05-22T15:55:02.064889812Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 72f1b0b9db0c3591ba2b8a9b96261d54e0ebd8ee4eb103e12cc69405a06ff4e8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.3.1.tgz + version: 6.3.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-05-21T12:54:13.733099705Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 77f1ecd9dd2906093dd195361debf68cd3d68f71c5d7e311097f3da6d5333ddf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.3.0.tgz + version: 6.3.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-05-18T01:21:53.683040543Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 5c2cb4cefbed41c261a67d06d82940e8f60423066ef85f1475ca053a8c33a3bb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.2.3.tgz + version: 6.2.3 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-05-13T21:34:52.297369011Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: c1711c67becb1fbefcba89704dce2c0e844050138afcaadb99ccc1f56d7eddf4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.2.2.tgz + version: 6.2.2 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.17.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.17.0 + created: "2024-04-30T11:02:07.944011133Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: d2930953dcb48a4d7e017cfe7de43ecdb33f61c5557fd80e0f16ae69ad4cd176 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.2.1.tgz + version: 6.2.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.5 + created: "2024-04-29T06:31:45.337745363Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 767497a08a54b11fa7cf2a0b8de8c45cd99f3315b63fc6222c4c1cb28d142b67 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.2.0.tgz + version: 6.2.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.5 + created: "2024-03-27T10:44:40.311644323Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 20e643989c33ab25919cb0a67f8459b42d36477d7ccbb92986eb7d82a64917a1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.1.1.tgz + version: 6.1.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.4 + created: "2024-03-20T12:52:49.010886665Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: f82803900d8937862c20252cb4639d6838ae452ed2b58782fea406b7843d3107 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.1.0.tgz + version: 6.1.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.4 + created: "2024-03-18T09:42:34.344083397Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 957c0d77a7b4fc96133be06ae1c62962fc4393a7cd6d239db8c38e3114f49a90 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-6.0.0.tgz + version: 6.0.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.4-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.4 + created: "2024-03-14T10:51:01.330653007Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 596a2c03f05e102909861f96aad9a7542e41b7c367f7e31cc8e958a2abb80fa6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.19.1.tgz + version: 5.19.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-03-06T09:11:45.197246Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 35599987dcce93b63ec23edce610b4d510737567d0999b4c0048a040f5328389 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.19.0.tgz + version: 5.19.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-02-29T15:33:08.710893108Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 66514eb96606571a1b8bb2a9ea1afa97fe17eb7f598de6f1c1e8c85fc578c5c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.18.0.tgz + version: 5.18.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-02-21T17:52:13.628240164Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 911c9c8a9c5e1657b9c6cb3b1745cc8a64524752ca08aaa122ec60920be56a44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.17.2.tgz + version: 5.17.2 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-02-21T13:32:56.747118296Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: e396c916e6b77019907de1998986cd2b2b4636a43364acc27d16e9883aaf0309 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.17.1.tgz + version: 5.17.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-02-08T11:56:41.220555053Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 9ba5000a52268c76e00d9b4e9744ae7baa8aa767ad7a897966ae4b2218cf6218 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.16.0.tgz + version: 5.16.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-02-02T16:58:20.857463274Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: e4d6a500aae1be4f0e08226e29627cc88851670ce5b87adcc02bca75fc8810ed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.15.1.tgz + version: 5.15.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-29T16:58:52.759403118Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 2aea69aa5618e6609256cbfbdfc4b7a16244b2c4155fef50083303e3f7e28aa9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.15.0.tgz + version: 5.15.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-27T17:25:43.111964809Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 36f285cbab5c6a5ad4117b5852e156bf1f87cbf5aa6b980d88efda9e7ccd3472 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.14.2.tgz + version: 5.14.2 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-25T10:27:09.495930894Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 30e0eafc321839cb4d8d0c14ef9079af60519e391c9fa8d6fd3ee3d7eef103ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.14.1.tgz + version: 5.14.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-19T15:37:14.461571463Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 10cac0a572d53b2c4691c3fb12664cb0827705a810b4c74db241e1684d4c6bea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.14.0.tgz + version: 5.14.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-18T10:32:56.404680999Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: b310ee26cc9fee1057bbd47889289b554f9f12565e83b7c031ed036a732d7cc1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.13.1.tgz + version: 5.13.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-16T14:52:58.5198494Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 7a920d4e974d65d7d6ba322c7279b65748ca664168c4b3a7cc08ce9d189e3ee9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.13.0.tgz + version: 5.13.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-12T13:16:34.796743571Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 54bb19d82e26ef9a163a2e602296e0b56fe946da4c1bda65e5c5fae7b11ee818 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.12.1.tgz + version: 5.12.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-10T14:19:46.679154715Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 53f7f93aff1d22e8174cc22f527974d3138d0831146ce3d8d01cc4cb133f422b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.12.0.tgz + version: 5.12.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-09T15:12:42.609485451Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: b65b7fb8f14db0d98ea6ebe1fe82a32730f845c52728788a9b342b19f34251c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.11.1.tgz + version: 5.11.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-08T10:24:31.986011008Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 28300d3d67ec5b7672fd9e340a7ce01288328d89d7e05456eab2424e5413aa40 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.11.0.tgz + version: 5.11.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2024-01-03T08:44:23.981969637Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 9b691811868f7eb33b5615834fb54f52cfaa8e4e31804b040a3148e16982d98e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.10.1.tgz + version: 5.10.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2023-12-28T07:56:12.827346041Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 1dbfcd582adeceb61be519b133828469d5d30d8f94a0ec50eaf2f55952939e8c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.10.0.tgz + version: 5.10.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2023-12-05T11:38:19.007931296Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 0971e21bf52fb57cf0e19afe85f72cb6e1747fb0332d7776b3a30a8318ac75ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.12.tgz + version: 5.9.12 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2023-11-25T11:06:33.256855777Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 6c58ababf100b5a87336117f078033940c6dbb2867b3409d34aa38049be8165d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.11.tgz + version: 5.9.11 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r81 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.3 + created: "2023-11-24T12:27:37.231239193Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 49466cff90ef1e71a4a6c08fcb1b20a2afc6f57be803f9c4096fb7d5c01d5863 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.10.tgz + version: 5.9.10 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r81 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-11-22T00:28:49.322346723Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 33676bbb42eb808f0ebe15578722b106760c49b7f1f0614f4b50471b864adfd7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.9.tgz + version: 5.9.9 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r80 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-11-08T17:39:08.52837279Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 620bef3f86fbcc9afe95f6f2a952460b825944b3c1cf418775cd2c428c32fb3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.8.tgz + version: 5.9.8 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r80 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-10-31T12:13:03.399012045Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 9fa778b3edef04c74452f7d9fec468524ca7aa3200a2e28bc993f09b6f46fb2c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.7.tgz + version: 5.9.7 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-10-15T10:21:07.414447982Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: d154bb0540f2e1738368c7b30084870c87ce293954c5d4d9793e23f9f463fd30 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.6.tgz + version: 5.9.6 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-10-01T12:34:50.219936456Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 033f7bb8491ae2668a825d843eb99c6aa46f635028f34688d60b2285c427932b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.5.tgz + version: 5.9.5 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r46 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-09-29T11:45:37.302957705Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: fdea5c0f509827bbb94eb9523cbca930a60c08285957d4ab78aa0de7679141cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.4.tgz + version: 5.9.4 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r46 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-09-11T14:46:59.306519743Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 9966801007640c7008115a9fb490518523acb28dccb05f2e1ccab95cad63b74f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.3.tgz + version: 5.9.3 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r46 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-09-08T08:36:51.739647062Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 700de7d4699b8d83a35793e5a510b144cb1ccf51d7ddb68c6d5e904132c676b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.2.tgz + version: 5.9.2 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r46 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-09-01T11:26:52.675939298Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: a74ff6342f1d7235f6cad50b65821c676b6ed5d87d9fd8183b73cd02ba11f30d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.1.tgz + version: 5.9.1 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r35 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-08-22T15:43:56.269065295Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: c3f2efd0236b80ebc1b1f2d0b4669326e2755384a224125807d01814a04980c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.9.0.tgz + version: 5.9.0 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r35 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-08-21T17:00:20.069937825Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: c614000ebb5b905d3c0f657526846701fa426a3106f28cd617de09dbcee0060e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.8.9.tgz + version: 5.8.9 + - annotations: + category: Analytics + images: | + - name: fluentd + image: docker.io/bitnami/fluentd:1.16.2-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-08-17T13:36:22.282688738Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: ceeac539e2627208250679ba2531460102722bc39a05f864e2101163b64151c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.8.8.tgz + version: 5.8.8 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-07-25T11:08:46.914026895Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 25e17b1eef0f8117400f5412fe47b488a95aa37301f1fc10149e06f3e2bcbc4a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.8.7.tgz + version: 5.8.7 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.2 + created: "2023-07-15T08:53:56.617568187Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 513b8038decc9acf56e41ac01e321a67d511df63b0649d92a83c60bd6b9ffa33 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.8.6.tgz + version: 5.8.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-07-11T19:38:34.45022736Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 87a084c358d40ef20f23ca9712081676ba0fd1b0255701e7432e0098971530db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.8.5.tgz + version: 5.8.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-06-21T10:56:57.640594006Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: b81231302a5b565b08623dd6d8a814521eeba2d2aec13bed6c2c3a53a421b247 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.8.4.tgz + version: 5.8.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-06-20T15:20:59.600024105Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: ec7862ef4f0ae02c713c20d8fb820e6eaeadc97c1fd22e5e49c7ffec445543b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.8.3.tgz + version: 5.8.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-05-21T15:25:57.710498149Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: f871ac9286fc4a9a62648e98e80907395362bb4df72a92686476107cd17e95e8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.8.2.tgz + version: 5.8.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-05-16T21:52:39.925899289Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: ee5d5992bfe2d7ec508719a9836edd7b1abb7316cffd56594d21e5dcf0d29209 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/fluentd + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.8.1.tgz + version: 5.8.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-05-09T15:05:43.323304612Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: f0cbeaa4309af54d47626b87250c96e3060db3b61f6f649e77fa16db42b511ac + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.7.1.tgz + version: 5.7.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.1 + created: "2023-04-17T14:00:54.03403661Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 66b45c02dd2a11c6c15b2724b328735c09a462e5aeca3aeecf7b59557e6a3edf + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.6.5.tgz + version: 5.6.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2023-04-12T13:21:26.557883599Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 8890f1f2d621e026b8e0288d6869b29f3cabf580c50691af2ced13b2a9c7b74f + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.6.4.tgz + version: 5.6.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2023-04-01T12:12:21.106985063Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 9d84a750b24597c01de6c729b260930ecbe4e41e049a7e372343ad5164c84c56 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.6.3.tgz + version: 5.6.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.16.0 + created: "2023-03-29T09:03:40.642535708Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 97e7a5df92d0d98f4e345b7da87e22c94d6ef06ae80d861a0bef9975e136e032 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.6.2.tgz + version: 5.6.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.3 + created: "2023-03-23T10:23:10.971119679Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 5e19d58ba21acbcb6dfd5ba1b0c1329df8beacb671efd862594ef7a0c626ff01 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.6.1.tgz + version: 5.6.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.3 + created: "2023-03-21T16:27:11.527586327Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 72fff105774be0be5dd56db0a9ce628e32799daef74876ef01d6ac75f0caf3a1 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.6.0.tgz + version: 5.6.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.3 + created: "2023-03-18T22:49:12.572026809Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: fac021ba035333b53ff1835d68d7641d83e1ab9daa7ed71ea6dfc32c81fec36f + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.17.tgz + version: 5.5.17 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.3 + created: "2023-03-01T10:06:24.329346299Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 22d36659b89958a3a66fb1917e2f4f55b196baa729fad3fb2e110f3783039b49 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.16.tgz + version: 5.5.16 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.3 + created: "2023-02-17T15:30:09.254608914Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 144bf8c406a2ccfbff8513e60ceb02d06d71d8f5190888447f0d5c03d06c6763 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.15.tgz + version: 5.5.15 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.3 + created: "2023-02-01T18:27:28.10284318Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 8cfb1e59064f86750dddfdcbdb715d676ac4f299cd0a0d065ec69c7f56874fda + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.14.tgz + version: 5.5.14 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.15.3 + created: "2023-01-31T08:41:03.524043662Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: f0014e9df33ddb99d6b2487de1f1faa3fe4f6b948c0935447104966342b3ff47 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.13.tgz + version: 5.5.13 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.3 + created: "2023-01-02T18:06:54.600491779Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: a41a8df639a816be258a00c407c1dc27d0885d312875e61ad49b5f1996253ba3 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.12.tgz + version: 5.5.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.3 + created: "2022-12-03T17:56:10.598460734Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 673b63e6822bcafa2b86091a673ad11a21b91002fd0c7f6c3307288672192edb + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.11.tgz + version: 5.5.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.3 + created: "2022-11-16T12:25:06.826562371Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 30cbb7edf2643e57f76512565dfb0bbf2b46b381de2719904a89ad2dd808eea2 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.10.tgz + version: 5.5.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.3 + created: "2022-11-14T16:03:44.120885991Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 727104f3acdbf7ba3898063bc9e302cd0e74ed11992ee2b74c80ebf7c07a02d6 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.9.tgz + version: 5.5.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.3 + created: "2022-11-14T10:11:22.612980214Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: f5dd9d475f6ad0f143eb18e7f5de57f65c57f6599ae0d777f0e3ab4ba3129028 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.8.tgz + version: 5.5.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.3 + created: "2022-11-04T07:16:23.039573351Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 2e7514374227b013dd32d1a747f8db6dce147f68b8585f5aa3ac481e72b44931 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.7.tgz + version: 5.5.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.3 + created: "2022-11-02T09:49:15.291121061Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: fadcd873833fbb6dcfa7292f107b35e6289f609085de3787686c5e6a9dbe6727 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.6.tgz + version: 5.5.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.2 + created: "2022-10-27T16:18:29.309842649Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: e02bb8e9ea45b81138e8010ef26ba18b9a93334084ca5baf8fd5c63c77d69e11 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.5.tgz + version: 5.5.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.2 + created: "2022-10-21T13:19:23.765540713Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: a62d99364be5509aa2c6b51a923e7f3e098750732be37906c5da1af5819e8ed2 + home: https://github.com/bitnami/charts/tree/main/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.4.tgz + version: 5.5.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.2 + created: "2022-09-27T16:20:09.823367518Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 89419bd184462cc35482885a2b40caf5979ac9abc5ceb3a38d2df94c8633095c + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.3.tgz + version: 5.5.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.2 + created: "2022-09-21T11:26:20.981511735Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 4b06ab20f78a6ae875f567fe2f5e0c47e792db565cc29c802db3fd37d7211a10 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.2.tgz + version: 5.5.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.2 + created: "2022-09-21T09:40:21.814679033Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: dd54e4d8a16cc2b53aebc7cf584b4a30d4f267ef920779e1302972c115fb2195 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.1.tgz + version: 5.5.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.2 + created: "2022-09-15T14:28:24.102005658Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 0e556c12576d182449e2006f86b1816ca083b80254754d3bd5a4105fc6f43fb7 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.5.0.tgz + version: 5.5.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.2 + created: "2022-09-12T08:41:53.672136829Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: c2b7fa516d1c16f3ddcbe7cea890d93294892c8091d7eb2e4e06e8e33971fd0e + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.4.1.tgz + version: 5.4.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.2 + created: "2022-08-22T17:17:41.754639866Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 5cfd9c268fd27e5b48d70f36d919381cfe20204bec2f0d2a04f2417872067f70 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.3.4.tgz + version: 5.3.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-08-09T06:42:05.988489862Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: f7bda7d44c015d0ec5d4067e6cb4cb33d231ec8194b006d47a8f49d6d4e2a783 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.3.3.tgz + version: 5.3.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-08-04T14:49:11.566039853Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: 325658107b08938dcf8afff03ce3ed8b59fe1f16d32a16127421c105644293b3 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.3.2.tgz + version: 5.3.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-08-03T17:25:35.974316266Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: a46fb03efbd62ca69699b7502fe569d4f2965fc50906fb822c32bdaec5759c31 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.3.1.tgz + version: 5.3.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-07-29T17:19:30.429352389Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: c0cec90c4468d8aed35ac2c34c456214de874f65e44a0e60ca6a18562f4b0033 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.3.0.tgz + version: 5.3.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-07-29T12:46:38.489946448Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:bdf54155e57b2156ca6e7c74ddfcc982e8dc024e8c77b36731d2b54b681971ef + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.2.4.tgz + version: 5.2.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-07-27T08:35:27.554719368Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:bcde03718cb941baccdbfd3520b1f97335df1fea2e85cb9346343b0a52d0e63a + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.2.3.tgz + version: 5.2.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-07-18T08:43:05.105187425Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:048e5189059ee7ee48b43be86eb882a6fdc92289a805eb7555349ac814308d3a + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.2.2.tgz + version: 5.2.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-07-10T11:56:10.828038215Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:dd19027b23bfe1e34b5c10acfaf638256b5720aae4b2a245112be15ddb678b5d + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.2.1.tgz + version: 5.2.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-07-08T19:29:10.440062824Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:caee5913f4b229c740fcaee221c57c6669144f246a08f44b9acc6aed5c4f0735 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.2.0.tgz + version: 5.2.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-07-06T17:45:34.234555593Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:f9e3643ed4dcaba75e0ab7e1006f68bc7e6b5521855c787c89a92e4a616199e0 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.1.14.tgz + version: 5.1.14 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-07-04T17:57:38.948640891Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:4e478c08e1e4ce1ec047031bad87245a83d709ae4ea215638319cac19b09ab92 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.1.13.tgz + version: 5.1.13 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-07-01T06:20:04.307043702Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:03bfbcaec1dc29a6b3bd8c42404e321c337a88bdcc2458bd74574efa13776fbd + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.1.12.tgz + version: 5.1.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.14.6 + created: "2022-06-13T11:28:03.129812699Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:c5bc9c8e63ba86af522558581e13b44dbc9c2b93c31c7e2cf2743ea39a4f5b25 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.1.11.tgz + version: 5.1.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.14.6 + created: "2022-06-10T17:16:17.296953776Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:598e8a2372893db8b70d1cf0156ea66176d65c537963e1ed48e3e061bf2e811c + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.1.10.tgz + version: 5.1.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.14.6 + created: "2022-06-09T17:07:57.930241552Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:a95f43277760e5a6e95f254e46465519616f35d6509bd1c6dbf7b0f220a52a05 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.1.9.tgz + version: 5.1.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.14.6 + created: "2022-06-07T05:20:45.551371041Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:36a3521be0e028c0e29625ce64e25b14df496a9494e27df36bb5b6da2958c60f + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.1.8.tgz + version: 5.1.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.14.6 + created: "2022-06-03T20:31:36.393513592Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Fluentd collects events from various data sources and writes them + to files, RDBMS, NoSQL, IaaS, SaaS, Hadoop and so on. + digest: sha256:8c62b5309b80f8c4ce1bbaff0e1197d9d1ce819f42e9dd8b2d910e458020c375 + home: https://github.com/bitnami/charts/tree/master/bitnami/fluentd + icon: https://bitnami.com/assets/stacks/fluentd/img/fluentd-stack-220x234.png + keywords: + - fluentd + - logging + - logs + - data + - collector + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: fluentd + sources: + - https://github.com/bitnami/bitnami-docker-fluentd + - https://www.fluentd.org/ + urls: + - https://charts.bitnami.com/bitnami/fluentd-5.1.7.tgz + version: 5.1.7 + flux: + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r9 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r10 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r10 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r12 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r10 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-08-07T01:38:49.992798074Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: b11fd7fe934897b893bc4e471ed528d037cf54dcd08ec5fe0c057e2e1108e4c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.14.tgz + version: 2.3.14 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r8 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r10 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r10 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r12 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r10 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-08-06T05:58:03.85712783Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 1378b67961a20ed618ad2247d561cb0d7435dfaf8ca3641376562d23e8e6eea3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.13.tgz + version: 2.3.13 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r8 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r10 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r10 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r12 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r10 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-07-25T06:21:28.209830743Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: dcb942b0757636345f0ba070697f49944b1fa00806f87fb8f4882d7e4cc3b1cc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.12.tgz + version: 2.3.12 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r6 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r9 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r8 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r10 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r8 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-07-24T04:38:15.190321443Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 31e560e6c5a8785ab615a4ba2abaf86403d4ea00b3dca4bafb42c673c58fd848 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.11.tgz + version: 2.3.11 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r6 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r8 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r8 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r10 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r8 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-07-24T03:53:16.081683522Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 221f83e3e561b55cfc59c0dae2b61168f84e17f0c22c38e9e1c14f99930b51a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.10.tgz + version: 2.3.10 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r4 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r6 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r7 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r8 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r6 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-07-18T11:13:55.991954651Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: c203e31d37fe9b2ef28445e18fbda00f56065a12f9952f6dcc02823c515191f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.9.tgz + version: 2.3.9 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r4 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r6 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r7 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r8 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r6 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-07-04T20:22:43.233222123Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 9a5262069c5fae7419db874bdfb47ec705df7e80afb56e763699615e4ec688a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.8.tgz + version: 2.3.8 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r3 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r5 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r5 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r6 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r5 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-07-03T00:09:57.351943669Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: e1fcfdd9d0a42a9a1852eb2e6ffa3d9a9fdd5a43e6722aacaa67ce5682e2764c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.7.tgz + version: 2.3.7 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r2 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r4 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r4 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r4 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r4 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-06-18T11:59:37.144013241Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 485ab064609ed3583d4ded277e1e3a5d98a820ed61fc87dbadbdd29733659253 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.6.tgz + version: 2.3.6 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r2 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r4 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r4 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r4 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r4 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-06-17T12:28:27.475499494Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: e822df6e1bfe8e720e40747704811a7bec4523bd8736704a4d772cbceae03572 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.5.tgz + version: 2.3.5 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r2 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r4 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r4 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r4 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r4 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-06-06T16:41:51.511784113Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 1dcd33f28cd4c71e3be4c5f4378f5ba204ee3927441dfd36e2157727f1a63537 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.4.tgz + version: 2.3.4 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r2 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r3 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r3 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r3 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r3 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-06-05T10:35:04.495396607Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 4abee925fb662b2833bb8e00443decbf10949b4c73967694739fa1e2ab8d3dcf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.3.tgz + version: 2.3.3 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r2 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r3 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r3 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r3 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r3 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-06-05T01:43:24.308030006Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 841f7bb788724cf5f5a097419dfa9fc9b019e6925eabb69ad85eb9b23527d36c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.3.2.tgz + version: 2.3.2 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r3 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r3 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r3 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r3 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-05-21T06:40:48.190289107Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 736434ec0486b9c55e2b51feca850785367aff90d01dffbdc389ad366e8a36ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r3 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r3 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r3 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r3 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-05-18T02:34:09.396178727Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: dc38304305561a317de66fbf3ae9b0a988a15aa3ad291d06fb8083706165c580 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.1.4.tgz + version: 2.1.4 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:1.0.1-debian-12-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r3 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r3 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r3 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r3 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-05-14T05:10:38.886541192Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 02f35017997abbc266083bc025d12ad8e8823d297b9320741844d7f2942bbf26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.1.3.tgz + version: 2.1.3 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r15 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.38.0-debian-12-r1 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.32.0-debian-12-r1 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.3.0-debian-12-r1 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.3.0-debian-12-r1 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.3.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2024-05-08T08:05:51.92650639Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 67dc528f6f9f6a15f3b7e10ed979c1429a7433b0604d11fa77cfb5a6188a2346 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r10 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r10 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r10 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r10 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r10 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.5-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.5 + created: "2024-04-24T10:29:30.755753669Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 74a2ef97d3848ba9d7df0ecbd1482dde14832decee0a17f6c692fed29a8cbb04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r9 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r9 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r9 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r9 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r9 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.5-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.5 + created: "2024-04-12T10:20:19.515584418Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: db1c37422136016dc7f9834a878a843ddb2a590c46892403b5405cdc22eb588c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r9 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r9 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r9 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r9 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r9 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.5-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.5 + created: "2024-04-05T16:46:44.377357677Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 9cce9451cbdf4e0abbaa05c1a617984e8a0e88d95ecf1a5c0dabc665e4db480e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.0.4.tgz + version: 2.0.4 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r8 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r8 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r8 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r8 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r8 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.5-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.5 + created: "2024-04-04T19:05:41.179541378Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 77f7e515fe837a364410523cd90e9dde0aa478a1889c297561951c4a17d1b43a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.0.3.tgz + version: 2.0.3 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r6 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r6 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r6 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r6 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r6 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-03-18T18:33:20.762721688Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: f249c73606261ddbbc0655e2eccc3e0d670b4e6a2cb921e801d0e30ab3a44e1d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r5 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r5 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r6 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r6 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r6 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-03-18T09:40:29.341530238Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 42dd4c543a0e243e78d05427fe16e4ba0ec82bfc2dbf5452e30dfc262f4e7dab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r5 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r5 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r6 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r6 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r6 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-03-06T17:24:47.696024396Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: e08f0572fde84eaee46f0fadc523727278c293dc7184201140bc8661c15e0369 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.10.1.tgz + version: 1.10.1 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r5 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r5 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r5 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r5 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r5 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-03-06T09:07:09.550329823Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 89325ae756f91135644aeb44a36fa2d808049637e017932bd615c2b768f4dfe6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.10.0.tgz + version: 1.10.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r5 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r5 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r5 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r5 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r5 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-03-05T15:10:25.32228069Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 38ad8db250fa8cb03bf36fcc1a07f91e81b9f64c77db7b8b5433182433f72338 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.9.0.tgz + version: 1.9.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r5 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r5 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r5 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r5 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r5 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-02-21T17:57:21.933670953Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: a5859124abcfbbf2b3b3b8654d48c0cf42a465801cfcfeb395ed3fc56c05ff6f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.8.2.tgz + version: 1.8.2 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-12-r4 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-12-r4 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-12-r4 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-12-r4 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-12-r4 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-02-21T16:16:16.458242104Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 04992feca5018b8387cb4889b0f63ecf0ad65ad834705de609ea60abd7d84c32 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.8.1.tgz + version: 1.8.1 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-11-r2 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-11-r2 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-11-r2 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-11-r1 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-02-19T15:21:17.966348372Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 42a4eceee424f8d466924974a74a49117d9e60e2a6f74ea66f02bdd2b3d9badc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.7.0.tgz + version: 1.7.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-11-r2 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.4-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-11-r2 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-11-r2 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-11-r1 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-02-09T11:12:01.202566816Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 67714249d97288a8b878f6cc5cc9fa625195e056cc48bc61f5cac941974bc578 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.6.1.tgz + version: 1.6.1 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-11-r1 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.3-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-11-r1 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-11-r1 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-11-r0 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-02-07T17:22:53.035205348Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: c9041eafd1c5584985afccee538ef8ab60345e7bc5ddad6c51c4678af646f1f0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.6.0.tgz + version: 1.6.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-11-r1 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.3-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-11-r1 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-11-r1 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.2-debian-11-r0 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-02-03T00:13:07.876126422Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: c9f70c635a23d42d6cdaa53a352e5e2bd7f3fe230b677885d6985c2760540de5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.5.8.tgz + version: 1.5.8 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.4-debian-11-r0 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.3-debian-11-r0 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.1-debian-11-r0 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.2-debian-11-r0 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r8 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.4 + created: "2024-02-02T10:56:06.579063943Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 5e1967cbaa31639b19951bedcc9faca97ce05d64136ba36b25e5e998d6a83b1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.5.7.tgz + version: 1.5.7 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r6 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r6 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r6 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r5 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r7 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-31T12:55:49.089197522Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: c14a15d3eabd642b6ac7f9df5b34056fdfeededa9c2ee117ec95588ac6cebd9d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.5.6.tgz + version: 1.5.6 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r6 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r6 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r6 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r5 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r7 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-30T15:28:25.344862075Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 16c9835b07443b2e13391489ec36891f64f059ff2ecf37d850a26f88b1cfe41d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.5.5.tgz + version: 1.5.5 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r5 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r4 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r5 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r5 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r7 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-30T06:31:28.854999233Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: b3b6edbc2e9f6a098076ace2c4f7f6f071488ddfdc0211b6e6b6b44137b866c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.5.4.tgz + version: 1.5.4 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r4 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r4 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r4 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r4 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r5 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-30T02:16:44.090097008Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: b6528eb56f29dad36f0db5c9375cd2c828ad9480f451d18bdc791ff4bbb06759 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.5.3.tgz + version: 1.5.3 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r3 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r2 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r2 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r2 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r5 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-27T16:49:34.432410849Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 78d34dcbfd6d5ecc14afe1e548bd7a2ce5447d7dce9deaf9c19301bb266055bf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.5.2.tgz + version: 1.5.2 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r1 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r1 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r1 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r3 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-22T11:16:01.765017688Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 9e7a296839f7f69ae200834b9e4e0f8c6d51bfc6a7f4dd2db3e9b2226a662638 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.5.0.tgz + version: 1.5.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r1 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r1 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r1 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r3 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-19T09:50:15.023385971Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: b24349411b8a7c077113e0c57fa77137c22174c0b9e8b29c1b9aa1ea96081a30 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.4.0.tgz + version: 1.4.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r1 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r1 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r1 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r3 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-18T16:07:47.581143307Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 74be0fe5226b8b4f96c814fab6b074aa3de450cd50bdac5bc7a0bd0d01043d6d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.3.3.tgz + version: 1.3.3 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r1 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r1 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r1 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r3 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-18T08:37:27.625204031Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 2bb6672611d8920000aea67c15c4f1645f479f855554402047290fa300133bc4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.3.2.tgz + version: 1.3.2 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r1 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r0 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r0 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r2 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-17T10:55:36.742394881Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 94bd1c0e10134006bc7119635c15af9095e8ecbe9babae4b55eca29e23a34a8d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.3.1.tgz + version: 1.3.1 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r1 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r0 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r0 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r2 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-16T11:15:36.114141827Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 25deef2de07791e0444f21144b662fd444ec592ef43a93d5edfc37e4105f8084 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.3.0.tgz + version: 1.3.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r1 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.2-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r0 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r0 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r2 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2024-01-10T11:38:28.561165082Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: d264bef773ad089d1092d2c00136a7e1d2a5bf63ce75e691aaeccf119a915fb6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.2.2.tgz + version: 1.2.2 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.2.3-debian-11-r0 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.37.0-debian-11-r0 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.37.0-debian-11-r0 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.31.1-debian-11-r0 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.2.1-debian-11-r0 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.2.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.3 + created: "2023-12-27T17:20:24.346164623Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 78909b61ba95b8b350dabeedfeb86fc4b64a5d0c6ea1c183b4d73058c838fd77 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.2.1.tgz + version: 1.2.1 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.2-debian-11-r0 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.2-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r7 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r44 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.1-debian-11-r1 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r30 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.2 + created: "2023-12-05T11:22:31.921393036Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: 50abb953a033f27647400e1a00481e8629598ed33699d2b4fe5b8464b8396998 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.2.0.tgz + version: 1.2.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.2-debian-11-r0 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.2-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r7 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r44 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.1-debian-11-r1 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r30 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.2 + created: "2023-11-21T19:31:48.092670943Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Source Controller is a component of Flux. Flux is a tool for keeping + Kubernetes clusters in sync with sources of configuration. + digest: db4dae2aca14b58a3e586c3885678f678dc2660fefe52837a019e74c05f2972d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.1.3.tgz + version: 1.1.3 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.2-debian-11-r0 + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.2-debian-11-r1 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r6 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r44 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.1-debian-11-r1 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r30 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.2 + created: "2023-11-15T18:04:50.100323231Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: e748f62e08418d09a1ebcb1d2115e26b4f11716bf0b525d9350a0459fb093582 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.1.2.tgz + version: 1.1.2 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.2-debian-11-r0 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r6 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r43 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.1-debian-11-r0 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r29 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.2 + created: "2023-11-08T16:35:15.921871113Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 013346af6150dd48711beafd5f3f7194a8c866ccd4862e50f8b9708d49caf94f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.1.1.tgz + version: 1.1.1 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.2-debian-11-r0 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r6 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r43 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.1-debian-11-r0 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r29 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.2 + created: "2023-10-31T15:16:41.817502827Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 19eafe841cade44d3693301eec8e811e34a92455938ef06180afa720da55e862 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.1.0.tgz + version: 1.1.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.2-debian-11-r0 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r6 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r43 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.1-debian-11-r0 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r29 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.2 + created: "2023-10-25T09:02:05.595368041Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 7c7eea5b3660346f65e98202d1b097306bde518902f60c9811e2974626607c26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.0.7.tgz + version: 1.0.7 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.2-debian-11-r0 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r6 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r43 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.1-debian-11-r0 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r29 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.2 + created: "2023-10-17T15:06:47.6996421Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 055b08dd64d32cc54c7d30f8d4e8ebc88675571f74c64ac5aabe629d09f2e8c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.0.6.tgz + version: 1.0.6 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.2-debian-11-r0 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r15 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r43 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.1-debian-11-r0 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r29 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.2 + created: "2023-10-15T10:29:14.027805038Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 5f4b0216ecd44a177be6fc25de0aa301dfe9b5eb51ce3072cd80d701f304a8b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.0.5.tgz + version: 1.0.5 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.1-debian-11-r16 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r13 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r41 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.0-debian-11-r27 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r26 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.1-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2023-10-09T23:33:13.963010302Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: a50a080fb2d1f2a0c9cd5021e8347080dcd703a434397cea15c5746b5374b4ab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.0.4.tgz + version: 1.0.4 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.1-debian-11-r16 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r13 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r41 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.0-debian-11-r27 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r26 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.1-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2023-10-09T18:08:09.150385299Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 17517fbe5ca36bda67ec059fa572bbe7dea8a4e8e87dfb1201e658387fa7ccc3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.0.3.tgz + version: 1.0.3 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.1-debian-11-r14 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r11 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r39 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.0-debian-11-r25 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r26 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.1-debian-11-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2023-10-03T20:54:04.502306472Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 9a497118946e42b4131de7447fef06492235d886c12209854818e1e73246dea4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.0.2.tgz + version: 1.0.2 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.1-debian-11-r0 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r0 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r23 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.0-debian-11-r11 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r11 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell: 11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2023-09-20T08:19:11.73848806Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 3e60ec127d422a6ac60ac87a47990464a87a312a627c118a3a3cdf91b0ead7bc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.36.1-debian-11-r0 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.36.1-debian-11-r0 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.30.0-debian-11-r23 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:1.1.0-debian-11-r11 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:1.1.0-debian-11-r11 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:1.1.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell: 11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2023-09-19T10:46:23.756794145Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: b84331eff953102be9dacb926e9e593d6e19d8f355066eb4b413f66a10f91d73 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.35.0-debian-11-r44 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.31.0-debian-11-r83 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.29.1-debian-11-r38 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:0.35.1-debian-11-r139 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:0.33.0-debian-11-r139 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:0.36.1-debian-11-r138 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-09-08T11:06:57.489512628Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: fdae60193676a059bc2c01057ecbd07eca8a2f9e41cf923978881ffa930030d9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.4.1.tgz + version: 0.4.1 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.35.0-debian-11-r44 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.31.0-debian-11-r83 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.29.1-debian-11-r38 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:0.35.1-debian-11-r139 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:0.33.0-debian-11-r139 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:0.36.1-debian-11-r138 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-08-23T09:52:36.276454934Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: ca9f4a124b3a37f2bf03a8d55b08221cad779edf2bf21ac1ed3383960f000c7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.4.0.tgz + version: 0.4.0 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.35.0-debian-11-r44 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.31.0-debian-11-r83 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.29.1-debian-11-r38 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:0.35.1-debian-11-r139 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:0.33.0-debian-11-r139 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:0.36.1-debian-11-r138 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-08-19T15:30:25.004504606Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: c4a9661214124e3e2ccb3db2016794747438f82fb8c147046dab7082f24ad694 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.11.tgz + version: 0.3.11 + - annotations: + category: Infrastructure + images: | + - name: fluxcd-helm-controller + image: docker.io/bitnami/fluxcd-helm-controller:0.35.0-debian-11-r40 + - name: fluxcd-image-automation-controller + image: docker.io/bitnami/fluxcd-image-automation-controller:0.31.0-debian-11-r79 + - name: fluxcd-image-reflector-controller + image: docker.io/bitnami/fluxcd-image-reflector-controller:0.29.1-debian-11-r34 + - name: fluxcd-kustomize-controller + image: docker.io/bitnami/fluxcd-kustomize-controller:0.35.1-debian-11-r135 + - name: fluxcd-notification-controller + image: docker.io/bitnami/fluxcd-notification-controller:0.33.0-debian-11-r135 + - name: fluxcd-source-controller + image: docker.io/bitnami/fluxcd-source-controller:0.36.1-debian-11-r134 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-08-17T18:00:18.505442862Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: a4b3d9e03e6dab37ef47daa741d66165ff84ccd5b578cf3b3cefc821a4fd0dde + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.10.tgz + version: 0.3.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-08-08T13:33:08.456701646Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 3491fea31639dd31403571334e0f8aab0f821530f51459733e18148e0212845e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.9.tgz + version: 0.3.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-07-25T13:34:56.192900623Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: cde6aaed91eeaca5037278f965d95260640a5b8a4a283eca4ba3ef6600e06a2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.8.tgz + version: 0.3.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-07-19T16:48:29.888449565Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 69bf45084a8aae1223ad654f3f3325999ff81b78a2b2a514742a90a70103aa4f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.7.tgz + version: 0.3.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-07-15T09:49:49.095966692Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 134c406d5e6b76ed1a6a9f477141ccc8db51bd936fd9df3417c729ab066ee527 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.6.tgz + version: 0.3.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-06-22T15:29:07.431343754Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 13569ece03510e9115e1d35a99d905805b208b143ddda685c8439e19ca43fbe0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.5.tgz + version: 0.3.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-06-21T10:54:38.991408768Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 2e086e66a72c04315cff4a7ca14d0f9d39cb8aa1daf6b2096961e59874c8138d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.4.tgz + version: 0.3.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-06-01T06:42:25.913433242Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 4a2d86770853fe057c8e44f56c3f4cd9d13c7c203e3f6c565c1e4ccb21187986 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.3.tgz + version: 0.3.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-05-24T10:48:39.930968464Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 742a39850ec81af1ab000d4fba048fbf08a34d58f20fb157fe31c28ec5e207fb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.2.tgz + version: 0.3.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-05-22T18:26:35.439095701Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 27b37570ace7d864ec45161a19b2d2d4f4c8e667268fc6a5764769cf9cb8856d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/flux + urls: + - https://charts.bitnami.com/bitnami/flux-0.3.1.tgz + version: 0.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-04-01T12:04:11.474707877Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 4bdcea5721edd57da17384dfe4c29a124111027b2f76bb87e7746eb0d2d9aeef + home: https://fluxcd.io/ + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-kustomize-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-helm-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-source-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-notification-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-image-automation-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-image-reflector-controller + - https://github.com/fluxcd + urls: + - https://charts.bitnami.com/bitnami/flux-0.1.2.tgz + version: 0.1.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-03-29T08:41:25.292447727Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration + digest: 4e51e193a8729b5be9f95cfdd4c31de7785bc19dc40f5761b0291ffd8fe30d3d + home: https://fluxcd.io/ + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-kustomize-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-helm-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-source-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-notification-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-image-automation-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-image-reflector-controller + - https://github.com/fluxcd + urls: + - https://charts.bitnami.com/bitnami/flux-0.1.1.tgz + version: 0.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.36.1 + created: "2023-03-28T15:24:36.938909608Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Flux is a tool for keeping Kubernetes clusters in sync with sources + of configuration. + digest: 455e485357c79343bcc2055193f90c708f3db064ab0906e663581fd54dfcb05d + home: https://fluxcd.io/ + icon: https://bitnami.com/assets/stacks/fluxcd-kustomize-controller/img/fluxcd-kustomize-controller-stack-220x234.png + keywords: + - deployment + - gitops + - cd + - continuous-delivery + - helm + - kustomize + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: flux + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-kustomize-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-helm-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-source-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-notification-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-image-automation-controller + - https://github.com/bitnami/containers/tree/main/bitnami/fluxcd-image-reflector-controller + - https://github.com/fluxcd + urls: + - https://charts.bitnami.com/bitnami/flux-0.1.0.tgz + version: 0.1.0 + geode: + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-12-01T16:01:56.565775479Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + deprecated: true + description: DEPRECATED Apache Geode is a data management platform that provides + advanced capabilities for data-intensive applications. + digest: b7d66fc7b1c32b8aa522fa14e1d365722c32b1d22cf8a5f01ed9b6e7329f32bd + home: https://github.com/bitnami/charts/tree/main/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-1.1.8.tgz + version: 1.1.8 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-12-07T09:57:17.816825892Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: 3c1deffb3403fb1404ae6e4012d73f3f89564abd8fd562d6b726901a3928cc4a + home: https://github.com/bitnami/charts/tree/main/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-1.1.7.tgz + version: 1.1.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.1 + created: "2022-10-20T08:06:45.847052393Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: e3884c15f2740c1e2af1b7f3c2949292904225d6b24319fc04da209eff9ac818 + home: https://github.com/bitnami/charts/tree/main/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-1.1.6.tgz + version: 1.1.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-10-19T09:41:11.979802514Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: ffae2b04f05744548bcbfecb20baaedd7bb85fe5363beca8258c428620d07698 + home: https://github.com/bitnami/charts/tree/main/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-1.1.5.tgz + version: 1.1.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-10-10T13:36:10.410476119Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: 0bfb934ff612f53adb33653fdf91fa488699d124d68d08f7debc92384c370e39 + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-1.1.4.tgz + version: 1.1.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-09-21T13:16:38.717620415Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:8ebd1f68b016214af27e7d95b13a840e1ba741bc2ca636c8be13dc8387ef3070 + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-1.1.3.tgz + version: 1.1.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-09-10T13:50:03.05789603Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:2eb4cb45f3cbdcf2e496c283109e3ae1560783320ea5c2ebc4fe156102578eb9 + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-1.1.2.tgz + version: 1.1.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-08-23T23:39:30.702838852Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:a1278b3a74650543f89755f0037c4d516d5a3726316b8eb2b8a0a8794da9ed3d + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-1.1.1.tgz + version: 1.1.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-08-22T20:08:49.182962678Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:b0944dfd86a7bc0f764b3920481657764e5b46051ecc67f9c2bc8b81c76d4ba6 + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-1.1.0.tgz + version: 1.1.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-08-11T13:47:04.480158989Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:d35e582208eecb9a7c25a50971ba88f6b62b443743e70b25767d843e0565ea66 + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-08-05T01:24:22.09328998Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:54a0db9ef7ee821a7c2bf0b23e0fa6a0c3d47aacb14dd44b0ed27adf00c40a89 + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-0.6.13.tgz + version: 0.6.13 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-08-04T08:19:29.400660252Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:8ca042297477dd084875678309da61c489dcb9c43c440055d1ab97fa9b717652 + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-0.6.12.tgz + version: 0.6.12 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-08-02T09:52:26.437627502Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:95ccd05ecfaaad9c6459d10e3f26ee99f5d1fa48e253e41b94da8365362bd92b + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-0.6.11.tgz + version: 0.6.11 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-07-29T04:47:48.506007787Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:2a69ec9647da698e083cb6c35fd8621c760cd6558077f777faf6d43e4af0c0ad + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-0.6.10.tgz + version: 0.6.10 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.15.0 + created: "2022-07-01T10:42:05.609558011Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:725dc0277e4fbfd5d829084961dd67c627db8565231edc2660f0f976428b1fea + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/bitnami-docker-geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-0.6.9.tgz + version: 0.6.9 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.14.4 + created: "2022-06-11T01:02:35.614273206Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:30e6401c1883e69b49d7af1c76acc9ba2e73be5bd6c4ea869a7a7157ad2446c2 + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/bitnami-docker-geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-0.6.8.tgz + version: 0.6.8 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.14.4 + created: "2022-06-08T14:52:50.753008511Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:b98f9405cbee043183f3df42b78ea50792265c08b7bb7d562e6fc51aefd9744d + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/bitnami-docker-geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-0.6.7.tgz + version: 0.6.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 1.14.4 + created: "2022-06-04T04:56:55.117140063Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Geode is a data management platform that provides advanced + capabilities for data-intensive applications. + digest: sha256:564426c3a732e74541a7ed6b332d0b73db964dfa03b409acb3859d7b040e80f2 + home: https://github.com/bitnami/charts/tree/master/bitnami/geode + icon: https://bitnami.com/assets/stacks/geode/img/geode-stack-220x234.png + keywords: + - apache + - geode + - database + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: geode + sources: + - https://github.com/bitnami/bitnami-docker-geode + - https://github.com/apache/geode + urls: + - https://charts.bitnami.com/bitnami/geode-0.6.6.tgz + version: 0.6.6 + ghost: + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.89.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.89.0 + created: "2024-08-02T20:29:01.702761249Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: c3c8eb3e750c93ba7d759abef70e5baf2334fb1099838d7d3a5cb0ea47890726 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.27.tgz + version: 21.1.27 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.88.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.88.3 + created: "2024-07-31T13:45:54.642514753Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3e600d3ad93838fad2879099f28406537b4e8809fa484d92991a90f66ec40145 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.26.tgz + version: 21.1.26 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.88.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.88.2 + created: "2024-07-26T20:20:01.90985797Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: c836d286d70418c42f60ae98d5217cc7f52b10050a84d71462aa5e6059f64ec6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.25.tgz + version: 21.1.25 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.88.1-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.88.1 + created: "2024-07-25T07:23:46.324748005Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 06b9853d245b05fb5e67ae1f17f7aeeb05d02963be5265d65c0a12ce5ce0f470 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.24.tgz + version: 21.1.24 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.88.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.88.1 + created: "2024-07-24T10:31:02.076416752Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b9649b5f22fb10f7d252a98edfcf7f2650e8c68b7ccfced7d79395e411edda74 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.23.tgz + version: 21.1.23 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.88.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.88.1 + created: "2024-07-24T04:25:38.748332634Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b0d27d47b3fed469bab13b523c4e63b119128e9c8f634a3402e758a42a524405 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.22.tgz + version: 21.1.22 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.88.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.88.1 + created: "2024-07-23T15:15:33.018454629Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 0e802977b5de5d852657ee04984b2dfc80ee38d298bc537c97888a686f509948 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.21.tgz + version: 21.1.21 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.87.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.87.2 + created: "2024-07-18T11:39:40.473768054Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b39cae58c26b7d2ba3b80f16b40001ee0b823476f60a3ee32319a61fd0a6d755 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.20.tgz + version: 21.1.20 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.87.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.87.2 + created: "2024-07-12T20:16:47.625739696Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d9d6e16f3530660d55bf194e1e691dc9dc00323842ea8660a251a7a309e2112e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.19.tgz + version: 21.1.19 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.87.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.87.1 + created: "2024-07-05T20:16:42.883743989Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: c72f1c715724d280f26c322ae669a2740ca25bac8d65c63c84d6fb3362db3e1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.18.tgz + version: 21.1.18 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.87.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.87.0 + created: "2024-07-05T12:51:29.622294466Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5f5bf9628e1ffb55d8c3d37608f02750f1d12d19773aa1f0691d0eb572cfa87c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.17.tgz + version: 21.1.17 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.87.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r23 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.87.0 + created: "2024-07-03T10:39:21.491141006Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: dbe84325c797bfbaac9504f3c89e9be6153285a94782fa944681b28da778e6ed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.16.tgz + version: 21.1.16 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.86.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.86.2 + created: "2024-06-24T00:51:09.001560544Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3e7ad927df4f74cf503c3b903ab8d9531fc270ef3e2275623e5cee506a753912 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.15.tgz + version: 21.1.15 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.86.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.86.1 + created: "2024-06-22T02:28:15.491553852Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f47d869a0aba1f5bbaf47fd873aa4d3e5fa62b951b1383116b9bcc2e48528e39 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.14.tgz + version: 21.1.14 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.86.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.86.0 + created: "2024-06-21T22:27:16.340501084Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 7d433ab2d4468c30a541356c4123f7548a53c14dc4f4746877d2334ad34628e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.13.tgz + version: 21.1.13 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.85.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.85.2 + created: "2024-06-20T06:18:19.916541709Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 1061ceef1222114df5e6ff6a949032e36961b428b590f49c961cc32aa36188e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.12.tgz + version: 21.1.12 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.85.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.85.1 + created: "2024-06-18T12:03:46.241600181Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 7b251b5263e108c8bdadb9335645ebd137b7eeb42423595ef3d74e4e2ff3d480 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.11.tgz + version: 21.1.11 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.85.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.85.1 + created: "2024-06-17T12:32:32.684782947Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 09eb6a8bae25b425b3a15034a72ef9624e76ca6981179f6816a4b827f84d9bee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.10.tgz + version: 21.1.10 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.85.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.85.1 + created: "2024-06-14T18:50:08.723407484Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3172c71f9a475090cf5648d1d796f9661a7324f2cb072f5c6a8cbe95c69e5d48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.9.tgz + version: 21.1.9 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.85.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.85.0 + created: "2024-06-11T11:48:24.614599728Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e1e32475aebb03aa50745e03f5cc5da02d9df9df8e5c48b0fcc60c4e854db436 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.8.tgz + version: 21.1.8 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.84.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.84.2 + created: "2024-06-07T19:01:42.771241085Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 857149145dc7c22edf78a45325c5e1c61617ff66aa8ee63e74061885067f65aa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.7.tgz + version: 21.1.7 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.84.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.84.1 + created: "2024-06-06T21:55:32.826097544Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5d4a2433e27c36922dd32f9414eb05cfec10e1a12b89dce58b3fd60afd1f662a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.6.tgz + version: 21.1.6 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.84.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.84.0 + created: "2024-06-06T15:43:43.512414245Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 0d7ac9dea5e91deae5b1978340d54d17ffb5681b4949a63aa297d5c6096bc070 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.5.tgz + version: 21.1.5 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.84.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.84.0 + created: "2024-06-06T11:27:29.84121866Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 775741b35d116510e4726f2fe3897bb8403562bec0ae3f561ef90d9ae36eeee2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.4.tgz + version: 21.1.4 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.83.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.83.0 + created: "2024-06-05T14:15:48.709545842Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 920737ade53b6f502cd70f2d99c67e6ed773ddc270b14d8c3153ffbc7ecd9f21 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.3.tgz + version: 21.1.3 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.83.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.83.0 + created: "2024-05-31T18:46:06.233460608Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f2b0a7d8baa03a32921456654094a3ab72a681d82cdabd3ad94f7c04769cce40 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.1.tgz + version: 21.1.1 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.12-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.12 + created: "2024-05-29T09:11:03.386387977Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 4eb9c02d6cc602ed7fef68d1ae748dcccd2442e921dc0b488c1dddd77f5187fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.1.0.tgz + version: 21.1.0 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.12-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.12 + created: "2024-05-27T10:06:49.601381096Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b71d9c2bcca7a09dc76dadd39f4b16e69300b147786dcf834556928db81334ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.0.1.tgz + version: 21.0.1 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.11-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.11 + created: "2024-05-27T08:30:12.763316277Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3e3ef77b6e7802c2480fd86be93ac5a340893dc4f5bd7c64d7cc17d11876ee86 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-21.0.0.tgz + version: 21.0.0 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.11-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.11 + created: "2024-05-20T02:29:27.434508712Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 11dae976e4f4ffe2d5fd0ff5bd43514fa3525043f582343f61e9323ad4299ecd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.15.tgz + version: 20.0.15 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.10-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.10 + created: "2024-05-18T03:55:38.433420341Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: dc12dc25cd1eca60c012b1432c3ecfe2076fd53121a5c4ebe52727ef8b8520da + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.14.tgz + version: 20.0.14 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.10-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.10 + created: "2024-05-16T15:16:50.343233105Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 217d8916ab7debfab6056556338409620b0bcaabca57fb7a78386b9e76537ead + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.13.tgz + version: 20.0.13 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.10-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.10 + created: "2024-05-16T07:36:13.12610308Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 4576ac07c2a9114bb8736966e4e3659a787a3024822c541805c96df2beb2c291 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.12.tgz + version: 20.0.12 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.9-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.9 + created: "2024-05-14T00:31:08.696480249Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 343dd10a69364e4f987a8cddc9b5eebf11132024ba07ec403a941b3007ba5fbc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.11.tgz + version: 20.0.11 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.9-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.9 + created: "2024-05-13T10:04:13.731669007Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 21eac7aa83950439379abdfcc5ad052e607834ec798f3646921a4f271f3da535 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.10.tgz + version: 20.0.10 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.8-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.8 + created: "2024-05-09T15:40:52.200714657Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: bf1fb9fca75bfe864cbf9850796366f3f487b15f21d67302fd1d290cffda26a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.9.tgz + version: 20.0.9 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.8-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.8 + created: "2024-05-09T00:31:43.131539724Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3df1f7bf59911114b47537c8dc9e73d3fe4824e8d09a9d932d4ebe8d92975527 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.8.tgz + version: 20.0.8 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.7-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.7 + created: "2024-05-08T01:59:44.793587658Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: adfb4a57134b0a5d86809aff406e298cc93eea7b929a26e8d28736e8a749eccc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.7.tgz + version: 20.0.7 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.6-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.6 + created: "2024-05-03T20:24:37.84903111Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5835dc5f2b0b39d5227c646931d7111948955f8b3aecb8e57958fe764f023efb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.6.tgz + version: 20.0.6 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.5-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.5 + created: "2024-05-01T18:18:16.158578733Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 0a2275dae71e66362f182accfae6cfddf25c916277c0fb0d89c282f64adb1401 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.5.tgz + version: 20.0.5 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.4 + created: "2024-04-30T12:42:59.28079263Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b7faf342dbc2831ac6354947eda9a8b17ad5a3b3553e15af9546b6a71f942bec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.4.tgz + version: 20.0.4 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.2 + created: "2024-04-15T05:27:20.780201383Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f0d2e6f2d99d5429cdf8f7ca49779536976aa7949ecfc24d81acec33d4106696 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.3.tgz + version: 20.0.3 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.1 + created: "2024-04-09T18:32:35.264726202Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: c9dab917b7e9fdcb97b0b29ec378e7dc2f13d96dced41d90dfb73937d5fa3901 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.2.tgz + version: 20.0.2 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.82.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.82.0 + created: "2024-04-05T20:31:35.515604432Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b6da395e91eb0c75fb2a88e8434ebdb3b2dfd90fb30b390df1cbdc74e23442a0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.1.tgz + version: 20.0.1 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.81.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.81.1 + created: "2024-04-04T08:05:05.396021518Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 7a8331544241a4bef375d10d77189c3cc45a93c890c62346957b7abf19dfe1ed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-20.0.0.tgz + version: 20.0.0 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.81.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.81.1 + created: "2024-04-01T11:20:20.987066271Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 6729d5cf8ec15ccf97939fd6da56b8d3191c61782173fc19c5b458138823a777 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.11.7.tgz + version: 19.11.7 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.81.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.81.0 + created: "2024-03-22T19:10:30.923885236Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 160ed82e654f9646c680c36e257a0bc3c4a53adf5755d03cc77acee5d26bd9ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.11.6.tgz + version: 19.11.6 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.80.5-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.80.5 + created: "2024-03-21T12:41:08.775677215Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e93eb5788491f317c66daa83182a152903bed3d6dae1700857aa6b7f849bb033 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.11.5.tgz + version: 19.11.5 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.80.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.80.4 + created: "2024-03-18T13:19:57.063775512Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: bf81d3ee2d1f9676cc2da43d81b06a04c0bf7deee0bc8a7c88ccf862565dfe12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.11.4.tgz + version: 19.11.4 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.80.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.80.3 + created: "2024-03-15T23:21:44.783527325Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 13f98f058c13b32c153dc74ec190c57dd0854801b9a302057797bfde38853552 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.11.3.tgz + version: 19.11.3 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.80.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.80.2 + created: "2024-03-08T20:32:35.46469045Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 779b2a96711b04eba2ba9d93b45ffe96bdc4429656deec24de62b4bae1f5aabf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.11.2.tgz + version: 19.11.2 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.80.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.80.1 + created: "2024-03-07T17:10:24.667750847Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e298730977e3e968f89da5a7e1e0c696dba583aadd67915c41db05ea6011ca32 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.11.1.tgz + version: 19.11.1 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.80.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.80.0 + created: "2024-03-06T10:54:57.211901438Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 550abd61ce330f22e8892a9bd8f25dc733bf21bfd12dbba795a823eaf7b73a65 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.11.0.tgz + version: 19.11.0 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.80.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.80.0 + created: "2024-03-01T20:32:20.980320702Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: c1b255c7d0976ec18f85540c09af7b528ad51b6198b5643ef91b3bd9149072ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.10.5.tgz + version: 19.10.5 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.79.6-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.79.6 + created: "2024-02-26T21:01:34.379587519Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 9554c0ae87447edee9fc51bd38534bd4525f4cf64876f5155bb02af65f05a9b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.10.4.tgz + version: 19.10.4 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.79.5-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.79.5 + created: "2024-02-26T16:31:37.85641907Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: fcc44ddec0b9bc81be36d0194eda23e519ccad3b10ff46f5bead4fa2a56cc804 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.10.3.tgz + version: 19.10.3 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.79.4-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.79.4 + created: "2024-02-21T18:01:57.771074662Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3e8ace749b8a0e9932f85d6c4b89004f3dec3d5b0d207cfaf6882a35268dd40d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.10.2.tgz + version: 19.10.2 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.79.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.79.4 + created: "2024-02-21T13:29:11.917621592Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 148166116c18c353d886938462bc23cd9606eee79879c7b19e85cbd740cd502b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.10.1.tgz + version: 19.10.1 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.79.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.79.1 + created: "2024-02-15T11:34:04.961340858Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 04e4483cffd028746d92061efc91e0af26a8aef2bd310fe5fe86aa587603aabe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.9.0.tgz + version: 19.9.0 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.79.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.79.1 + created: "2024-02-09T21:34:56.004530626Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5000609db4289c9b8ac834bee69ebfa15ff83586eacdc55c58441ef126a33f32 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.8.7.tgz + version: 19.8.7 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.79.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.79.0 + created: "2024-02-03T01:37:38.000788317Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: cf5bb1039b877078519b3060d0d95994511ed95392fe9ad7a1dec9b30f429296 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.8.6.tgz + version: 19.8.6 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.78.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.78.0 + created: "2024-02-02T18:28:09.605797325Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 044c8a6eba858bdc43f2805a32e457e1c9cd10880f0204497207b532522adb62 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.8.5.tgz + version: 19.8.5 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.78.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.78.0 + created: "2024-01-30T21:10:34.593483917Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3aed9f78d8c07d2011791dd98234b55afc55542899432820887ee1cbcc476f89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.8.4.tgz + version: 19.8.4 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.76.2-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.76.2 + created: "2024-01-27T01:47:24.961025809Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b333d5f4e45f7d3b5f240703ea87c009416f4ebf2c6b81e15f81aceab911c489 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.8.3.tgz + version: 19.8.3 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.76.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.76.2 + created: "2024-01-25T12:41:58.041920286Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 072c1d46208bca03c5ae75329c76bb939f2fda21816d09e1d79f0b40173100dc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.8.2.tgz + version: 19.8.2 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.76.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.76.1 + created: "2024-01-22T11:42:13.695877704Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 150cb39a4c2a6a7dedf8347a89a128b4d11d4b85fad6941afc5f531a76ea352c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.8.1.tgz + version: 19.8.1 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.76.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.76.0 + created: "2024-01-19T11:01:02.400895134Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3f5511fd522cb957d818578166233fd6cbafc68d6a224bdb2e81e9a006d4bc8e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.8.0.tgz + version: 19.8.0 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.76.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.76.0 + created: "2024-01-18T10:27:26.789831719Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 6b4364ed2b4bde0900e0efbb6874a216568d2d388d0be98a23a84b16990aa612 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.7.2.tgz + version: 19.7.2 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.76.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.76.0 + created: "2024-01-17T15:12:50.929235152Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 80aa2dc4688d1aecabeb22d3883c7db07d9d2c6a5a95ae8774b70c3ee9d3f981 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.7.1.tgz + version: 19.7.1 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.75.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.75.3 + created: "2024-01-17T12:00:11.198599556Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 7aa931f98c96554afb4c9f49ab2a62040b002f64b3a2a0f5fd75ccbbdced1875 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.7.0.tgz + version: 19.7.0 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.75.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.75.3 + created: "2024-01-12T14:35:33.103092545Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e36d2cdb71b899da6027e87e742e323b0bdd7a32a95f7d575bd2d84051209148 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.18.tgz + version: 19.6.18 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.75.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.75.3 + created: "2024-01-05T17:37:34.664858505Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 9ae21bdf63333878407ca218ba916b5393e902a1c22c1d43b4da4521479917a2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.17.tgz + version: 19.6.17 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.75.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.75.2 + created: "2023-12-15T08:24:54.986124745Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5b2704e5cc89fffdd548b0d1de81154254be06602b5676b3fb4222d58e61dff9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.16.tgz + version: 19.6.16 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.75.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.75.1 + created: "2023-12-14T09:21:04.251911934Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f7cd3e034ca54168da6fe1d546c4d24c964cbd5b163b84ab0ff12a6e7ce95c55 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.15.tgz + version: 19.6.15 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.74.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.74.5 + created: "2023-11-28T17:41:08.046209508Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: a8c6caf30de8bcdc21eb7fb0b0154869deaadeca868bc3ae9f8e5411e71ce607 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.14.tgz + version: 19.6.14 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.74.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.74.4 + created: "2023-11-27T12:22:12.575773765Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: abc1b4126ed88059c8ae6f8f6865cbacce864eec235fbb2e8506a5148aefefe0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.13.tgz + version: 19.6.13 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.74.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.74.3 + created: "2023-11-24T20:12:23.137028918Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d5033843278a4212affa96d6094f19bf1b7a66f2eba5c80ca4ceaac5411f85b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.12.tgz + version: 19.6.12 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.74.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.74.2 + created: "2023-11-22T17:17:09.937854986Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: bc348f354221cab7259bdfaedc94c438f78b8720357664cc986f7312ad92b9c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.11.tgz + version: 19.6.11 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.73.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.74.1 + created: "2023-11-21T22:15:14.265413766Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5254ac87474f0e323e90a73e41320a889a8772a08fb9032727e6d75c53722053 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.10.tgz + version: 19.6.10 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.73.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.74.0 + created: "2023-11-21T18:23:58.620747627Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5e8bc6e66240ea34a0716b602de7a4d694ea0fc46bd843b4cc148d47e3d338b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.9.tgz + version: 19.6.9 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.73.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.74.0 + created: "2023-11-17T21:29:44.310662301Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e4de52b865b957ddca76286557524785c594173e955e8d44a5adc500b819a2be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.8.tgz + version: 19.6.8 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.73.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.73.2 + created: "2023-11-17T12:54:16.66290049Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 031f005507d38fdd3ec80d992239aba9fab45a580e8d39d8ab54645515b290e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.7.tgz + version: 19.6.7 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.73.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.73.2 + created: "2023-11-15T02:16:50.524336526Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d6ee5323792292daef6337bf8fbd50e6f7d0f5186ceecc37289ff8adfc588f26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.6.tgz + version: 19.6.6 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.73.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.73.1 + created: "2023-11-14T12:21:04.209355809Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 55ea9f576a2a271dcfe65758146e924eb158ed0644dc7fe5e9ee3004ad8d594a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.5.tgz + version: 19.6.5 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.72.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.72.1 + created: "2023-11-08T16:21:56.218229903Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b068ac6bcf3e1b3053da3968e8efdb4d822772b99e71affaa207fa945b72fb77 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.4.tgz + version: 19.6.4 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.72.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.72.1 + created: "2023-11-07T06:44:08.241809598Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 6821f719a2895ea538b508133ac05c1d8ffcf31c2eb3f06c242edf230ed969e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.3.tgz + version: 19.6.3 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.72.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.72.0 + created: "2023-11-03T21:53:31.361783223Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 08d8e55b79825deafbc8c7a3a30233f1b83156f06b976d793e079b7581db07f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.2.tgz + version: 19.6.2 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.71.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.71.2 + created: "2023-11-02T15:39:43.524301309Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f5240e0e603e6a82b0d680d2af4585d8235e470cd5424bd3ef1f45c67d663a92 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.1.tgz + version: 19.6.1 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.71.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.71.0 + created: "2023-10-31T16:12:51.914648334Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 37b6619752c95608815e8489edc71545f314d769f6606d9a63517ab1df85d3ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.6.0.tgz + version: 19.6.0 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.71.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.71.0 + created: "2023-10-30T13:53:54.217336186Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 1079dddb66b1da2286638eb63a348d1300c692effbb02298c33211b529328303 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.22.tgz + version: 19.5.22 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.70.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.70.2 + created: "2023-10-24T20:37:36.235260543Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 722af6f9287b728c8ed0fe37603d0e4590cba7e6dfe22c15bf24b94bf1bdbdb8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.21.tgz + version: 19.5.21 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.70.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.70.1 + created: "2023-10-20T22:47:33.602626098Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 30b1d99ee9396bcf7818f043f244b6414e2382fb272231e7309276319e3601c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.20.tgz + version: 19.5.20 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.69.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.69.4 + created: "2023-10-20T15:28:42.711077974Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 988abfec8c3998a8e13b651c0d9476a4830a82c9ba6e811c3e3e3d4fcb34aece + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.19.tgz + version: 19.5.19 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.69.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.69.3 + created: "2023-10-18T15:42:05.528705442Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 2a7b321e1f5ad6bcb787bd4303d72fad8a21b50e11498ede21b267bfe3208bdd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.18.tgz + version: 19.5.18 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.69.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.69.2 + created: "2023-10-16T20:22:34.165059617Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: facc782ec87abffb6116daaa6ed7cccfa3db969fa984562ecd3868a785fb6156 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.17.tgz + version: 19.5.17 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.69.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.69.1 + created: "2023-10-13T20:00:42.814343873Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 78b9de72b5b4322133afe376523fb73382364cf7094e0879c11e510e5060f975 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.16.tgz + version: 19.5.16 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.69.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.69.0 + created: "2023-10-12T15:05:53.056629974Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5f300acdead0c270e7ca3180c3e91a64caecf3cbbceac9c4973053f4142a5d2f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.15.tgz + version: 19.5.15 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.69.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.69.0 + created: "2023-10-11T15:20:15.800469296Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: a1d8e900dc260bf37019c2fdb5b52027886523bcdf8129fc87520d6386aa7c5c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.14.tgz + version: 19.5.14 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.68.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.68.0 + created: "2023-10-11T09:25:44.174887153Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: c4cc0f58732525426892a0f101d2c912f49f72d0743619e7ec7aa9355842cd14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.13.tgz + version: 19.5.13 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.67.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.67.0 + created: "2023-10-09T08:15:42.24995012Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 4ec304d676e59bf6473ac56610b339a591d6d992928eb99680a888daa9896dba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.12.tgz + version: 19.5.12 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.66.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.66.1 + created: "2023-10-04T07:54:10.44618522Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e116d4abb375fbb6a6923de9386440dada2b39bda87a4a0220adf07369a2c01e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.11.tgz + version: 19.5.11 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.66.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r83 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.66.0 + created: "2023-09-30T00:08:26.494638355Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 72caa8d6cb105c62847e8ccc1092cd752253d95b2aeff345b9aed693b389e459 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.10.tgz + version: 19.5.10 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.65.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.65.1 + created: "2023-09-27T13:04:48.119829733Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e3499db32e00c1ddc04925db8815d3611b15e3a84a9654b71f58db3c1249c7d0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.9.tgz + version: 19.5.9 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.65.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.65.0 + created: "2023-09-25T08:43:53.727251353Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5795e2e22c1bab857d5fc8a99c9eb11ce23d606a75e11a44d47d91562709e906 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.8.tgz + version: 19.5.8 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.64.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.64.0 + created: "2023-09-20T09:45:25.143690994Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 691b444636e7a40642dba272d44a785603f5c9dcd1354d05750c5b1f6acd9452 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.7.tgz + version: 19.5.7 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.63.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r69 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.63.0 + created: "2023-09-15T22:33:57.816804036Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 0a98d9a6a85a3c0fc1544b3b585db35d86e6850fea41524c5d0fc0ad3859aea3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.6.tgz + version: 19.5.6 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.62.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.62.0 + created: "2023-09-12T09:56:23.409356129Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 51472ab35ba90535b1dc45922c66f1d8f20fa89e23a0cc8d06901a578d7e0b79 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.5.tgz + version: 19.5.5 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.62.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.62.0 + created: "2023-09-11T11:21:57.087911432Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 1fc07652ca61ea2ac05def3783f715696c58666d2943725d0e0168fe49905908 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.4.tgz + version: 19.5.4 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.61.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.61.3 + created: "2023-09-08T21:59:18.333976136Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f8711f27b039a0df5193f79fd830cfc7d577865f2d555ea916e445bdf96a6187 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.3.tgz + version: 19.5.3 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.60.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.60.0 + created: "2023-09-08T11:14:23.016910596Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: ec056a1b9ba9a9c9125b575c1bdb9485279821c787fba7bb0fc6fd8cd29a96b3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.2.tgz + version: 19.5.2 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.60.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.60.0 + created: "2023-08-25T22:46:09.797517803Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 819e9d10db760ffe4c245450c27173e84fa6e483f7e44e83ebe825515ff3d034 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.1.tgz + version: 19.5.1 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.59.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.59.4 + created: "2023-08-23T16:21:01.247150027Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 44eb461140188f5cef4a20b0d1b6a376b13b3ccf939b5422a4bd22d9079823c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.5.0.tgz + version: 19.5.0 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.59.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.59.4 + created: "2023-08-22T18:59:39.06948255Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: eeadf3b6d2d812258d59c20bb29de5244138610b6c506bf59cd728c1ec0078f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.4.4.tgz + version: 19.4.4 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.59.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.59.3 + created: "2023-08-22T07:08:32.901645661Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 69f605f950bbeaea4d2b9018401f925036162c9bedd6f63dbe0d9f3491d7df96 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.4.3.tgz + version: 19.4.3 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.59.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.59.2 + created: "2023-08-22T06:53:10.829572297Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5c44697d52790aaa63070f4ec6beab210bec50293321db6c8707f423b24fb289 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.4.2.tgz + version: 19.4.2 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.59.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.59.1 + created: "2023-08-17T17:09:53.003047179Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d5f6bcdf6097a4db0d60cf6c2559e81d1817ab045c19c1ffa607193ea4611903 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.4.1.tgz + version: 19.4.1 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.59.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r37 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.59.1 + created: "2023-08-17T14:52:48.096368431Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 06cb446ee8124f7ece87dbc0b575f905903a10af68b44d0e9b01e886bdd60374 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.4.0.tgz + version: 19.4.0 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.59.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r37 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.59.1 + created: "2023-08-15T16:04:55.320317583Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: a128c57aca5623a897d7b20ac99277100c1f0c26a512d209f104199684851361 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.37.tgz + version: 19.3.37 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.59.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.59.0 + created: "2023-08-11T22:22:37.497470978Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 6026879824f13de1d46daa0f104553973bd3b7de9e9990769d5340011ead3555 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.36.tgz + version: 19.3.36 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.58.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.58.0 + created: "2023-08-04T22:29:21.952438461Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: a8573e847995b0445e2f7d729cf26b29ba59f36634111ce9064ef467fac077e6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.35.tgz + version: 19.3.35 + - annotations: + category: CMS + images: | + - name: ghost + image: docker.io/bitnami/ghost:5.57.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.57.3 + created: "2023-08-03T16:50:15.545238021Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3f4db26659e05590628654c86c865b762c9373b9e4e9a3e4da972ed3216072f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.34.tgz + version: 19.3.34 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.57.2 + created: "2023-08-02T19:32:25.22812086Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: ea8920b8324d0e9ecac208ead5e254d6aaa68d566d2645ed780dc8411b7584d2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.33.tgz + version: 19.3.33 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.57.1 + created: "2023-08-02T01:35:46.606127246Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 8e4411ba3cb1ceb829a35f24c8efcd40161e32323e43891fe7bbd6ef4857ab66 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.32.tgz + version: 19.3.32 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.57.0 + created: "2023-08-01T01:10:43.112864174Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: aa6a96153e0a35d818931335c89a2e717686939d44d799488492e770285733eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.31.tgz + version: 19.3.31 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.56.0 + created: "2023-07-31T10:08:47.058214276Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 54a91e5d91c045d6babcc1ebe6a6c404b359fd06a764a8d03807c34cc53617b3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.30.tgz + version: 19.3.30 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.55.2 + created: "2023-07-27T16:40:21.313048269Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: bd5913a16f197d71d4da0223017dfd6a5c7acacc8e4acbe1e67d6ff1f91f244c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.29.tgz + version: 19.3.29 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.55.1 + created: "2023-07-25T13:43:48.625952508Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: ad2b944ec6e8ebb297af958c74515cca2af9d4ca410360a1848500949b514b08 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.28.tgz + version: 19.3.28 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.55.0 + created: "2023-07-22T09:44:12.306812658Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 6d794f9b55a877d30273a1654c69db6b582edf4b1bfbcdd2552e1dda67b3fdde + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.27.tgz + version: 19.3.27 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.55.0 + created: "2023-07-22T08:15:38.1637504Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 9993fda35994b280e126fdc80bba66c66162a808e3eb5700cbbfcc7d45f0d473 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.26.tgz + version: 19.3.26 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.54.3 + created: "2023-07-17T22:39:29.965519633Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e8b60869ec55fa7d27fa79b1340622a0b82b57dc042a3631771cc42b359245c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.25.tgz + version: 19.3.25 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.54.2 + created: "2023-07-14T22:13:25.92095921Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: dccc968b520a564aa5285c21743de73b680036bfacad42a0038f9661426bf946 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.24.tgz + version: 19.3.24 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.54.0 + created: "2023-07-08T00:29:34.148326845Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: ba7add479c2170605fdebeccb6e58d4783b768682b16b3a786535d1cf1219655 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.23.tgz + version: 19.3.23 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.53.4 + created: "2023-07-05T07:22:28.901803632Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 8325a7077371aed1f9e06ee56fe5322d02e13d89fabc042d51c0cb7c6c080c88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.22.tgz + version: 19.3.22 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.53.2 + created: "2023-06-29T12:38:45.016349746Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 13c68ff4ce8730d6998747d72491e69b4439137e2e095554e71c567d84225aa6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.21.tgz + version: 19.3.21 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.53.1 + created: "2023-06-24T17:58:32.062065673Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 08fbdc1b13a0d1b0da02148bda58f28cdddf5fe5754e3838e5c0b505e2e66e24 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.20.tgz + version: 19.3.20 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.52.3 + created: "2023-06-22T09:05:59.448545586Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f069868d48e0fe7454b095095319457b22aa6d8be13f6df459153f2ff987a567 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.19.tgz + version: 19.3.19 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.52.2 + created: "2023-06-21T08:07:30.088183927Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: c6539f53fb1fe9c09adf34cd18917ade0379714d60e24ab28cfc277dfc244f40 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.18.tgz + version: 19.3.18 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.52.1 + created: "2023-06-27T08:04:24.409968148Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: dc6249d0c05fec62b604160e3a0d5e109d92f069741a9d81efcdb9874f0eed82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.17.tgz + version: 19.3.17 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.52.0 + created: "2023-06-16T22:30:09.970563953Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f35df353f3fc608626e15f27421d14ccdf85cbeaea2f1b481db5853e73c1b8bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.16.tgz + version: 19.3.16 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.51.2 + created: "2023-06-19T07:36:40.626362489Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 81ab88368710b2758496e6b15dd5f9b0879ffa0afe0bddf414501951bef25bf3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.15.tgz + version: 19.3.15 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.51.1 + created: "2023-06-13T08:19:01.480422204Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 6b196a9cdc73a61bdfc81283834a4335ddc1ee350d2dfdc966d8b31b1b567621 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.14.tgz + version: 19.3.14 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.51.0 + created: "2023-06-12T07:32:19.184040537Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: fd5a8dd3acb2e41325f8f249830da29b95585e84e553abe7ff87d685fbb39e22 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.13.tgz + version: 19.3.13 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.50.2 + created: "2023-06-06T23:13:37.254764835Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f55daa8e90e28ea25b301cf39588cc6cecd2dd3792c613c7c6128211e96eb07a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.12.tgz + version: 19.3.12 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.50.1 + created: "2023-06-06T17:49:39.222665582Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 82a6e847c7a7d284b9e0375839650f49cc35d8b84f288dffc5057b25242f7540 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.11.tgz + version: 19.3.11 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.50.0 + created: "2023-06-05T10:59:41.310886723Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d38ff54bed56794670181dad848d2375b7bcc87846f255ff4265e4178a3899e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.10.tgz + version: 19.3.10 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.49.3 + created: "2023-06-02T17:33:57.754378973Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 0bbbd38cce6d5207d89d445fb00c9cd41138f850b87eb338b18d00b9cc09fa55 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.9.tgz + version: 19.3.9 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.49.2 + created: "2023-05-30T18:13:30.937037486Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: ca6971126bff77b930b094e3acc216597ee7302b50a1f1a9349d530c7a81a59f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.8.tgz + version: 19.3.8 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.49.1 + created: "2023-05-26T17:16:41.898158Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: de68d637a789186b73d2f57187da359135aaacfc3640ff483bef763bb8168110 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.7.tgz + version: 19.3.7 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.49.0 + created: "2023-05-21T15:42:45.756629094Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: ae601613dfbfebe5f4e8f7ee995f92f525c296b4fa6ea7472c69d885862fce1e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.6.tgz + version: 19.3.6 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.48.1 + created: "2023-05-18T20:41:32.222418895Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 7e38ae5d62d15d814ec25cd029f6ed8a912fbd9f3f23edccc4e2c57a59bb05ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.5.tgz + version: 19.3.5 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.48.0 + created: "2023-05-17T14:23:25.000749473Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: ef7957264e68f0d0383e4d034ce5e2757746df2c0f0a0cbdbbbc57dea654c5a2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.4.tgz + version: 19.3.4 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.47.2 + created: "2023-05-16T23:51:40.962848807Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 369ee9bdd49d1d9802d190718f7d715d9d29fd3459235168805c2dd8ddf52645 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.3.tgz + version: 19.3.3 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.47.2 + created: "2023-05-15T19:21:11.712607837Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 4263ada65b900700e24359403a242615da9327f1020248cba4c8af4d0fcc8652 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.2.tgz + version: 19.3.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.47.1 + created: "2023-05-12T18:51:57.437677052Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 741c7e48421aa18d83921c84a3a4b816581bea3c439e2a97b0e25e0c8dc79820 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/ghost + urls: + - https://charts.bitnami.com/bitnami/ghost-19.3.1.tgz + version: 19.3.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.47.0 + created: "2023-05-09T15:44:59.334934218Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d7e4a0cef6491055aefdd53995d5abbfd2c3cf77021ab33771cdf1a85c05c82b + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.2.5.tgz + version: 19.2.5 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.47.0 + created: "2023-05-05T19:24:11.026589022Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 1a69303ab534f5e92e63b8e244f8628a79653c5feefab94ae861364c0c7cc84b + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.2.4.tgz + version: 19.2.4 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.46.1 + created: "2023-05-03T17:13:26.703586319Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f5e52d6a5ed154d2c32825d60ee632daf74cbadfd6226efc1ccc2959324ef83b + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.2.3.tgz + version: 19.2.3 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.46.0 + created: "2023-04-29T19:10:38.818938259Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: cda82b4fdb1d426ee60caf2fe8cc656e588cbee214b95e2e01645d906621bd5a + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.2.2.tgz + version: 19.2.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.45.1 + created: "2023-04-25T20:16:09.778614408Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - ghost-database + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 1be6d05a15006ce1160f951c573eb05dbf53688d97056a7787fc6079a70fe2db + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.2.1.tgz + version: 19.2.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.44.0 + created: "2023-04-14T17:07:48.637011013Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: acd8e43d2beddb5fc840ab4e7d5dd0d93d33b5c6608a75be9d76b37a386788e0 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.81.tgz + version: 19.1.81 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.43.0 + created: "2023-04-14T15:52:10.410693273Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 729016548f2f17085592068d972ceed362f394e0d2a9c24cb5307a7aea1203cd + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.80.tgz + version: 19.1.80 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.39.0 + created: "2023-03-18T23:37:20.767630382Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 613224f7aa277ff306b131d2116b9a8d774c9263dcc5f0b64bbde1d2cca15137 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.79.tgz + version: 19.1.79 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.38.0 + created: "2023-03-10T21:12:21.446377507Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e6d60099752aff3e2e3fbf299e28a0ac7b193259f589bcf4a7bc77cb669ef19f + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.78.tgz + version: 19.1.78 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.37.0 + created: "2023-03-03T21:01:57.785538547Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 8e31686197717257098f8a98638faa71e8a52f1644e4d56f3ab93dc8e0408142 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.77.tgz + version: 19.1.77 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.36.1 + created: "2023-03-02T21:24:16.067027146Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f6b103a0c66ab320e0167b67e474032cd9a867c7aceb25eb965a90eb55e56f47 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.76.tgz + version: 19.1.76 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.36.0 + created: "2023-03-01T10:04:10.467352706Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 69d601603595b2d38074e5d3b27989a668c558200217e5455645a3f16a9558f7 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.75.tgz + version: 19.1.75 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.36.0 + created: "2023-02-24T22:28:49.371975287Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: c69ab393c46f3eb6f6d297553c98e3fc9a1f5e89d483c95bcfce7b9218a4b1b3 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.74.tgz + version: 19.1.74 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.35.1 + created: "2023-02-22T18:28:44.993760658Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: a8360750c9676a000b77bdd96eae30f8691c1a9872fef42fe9f39523d4fd5e96 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.73.tgz + version: 19.1.73 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.35.0 + created: "2023-02-17T18:45:46.748112096Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 9084993a37c52bf2dbef138ebddeef0f6fbf6612a41dc0711334b1a7ec58d4cc + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.72.tgz + version: 19.1.72 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.34.1 + created: "2023-02-17T16:44:46.122530386Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 79cb79f3211f4dccba53946a9567dd9b39910dd1f7ce0be808a7b2c2e9f47e69 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.71.tgz + version: 19.1.71 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.34.0 + created: "2023-02-14T00:08:55.228324947Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 39b9765392502c5e55dc66e0d652028770d34deb8d834b32f3f859adb3b9f525 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.70.tgz + version: 19.1.70 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.33.8 + created: "2023-02-09T14:41:07.431296347Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 2a286be7448e3db20c775113e48dbc7a1ee5c29a2f5784d8be83f9007b1d51b1 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.69.tgz + version: 19.1.69 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.33.7 + created: "2023-02-07T15:08:28.141356012Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 882916e90bdbfecccb80fe572b888fdf96c6e65f828e1bbedd3d53378a4b669c + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.68.tgz + version: 19.1.68 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.33.6 + created: "2023-02-03T17:29:34.83082301Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b8d867b7e09a996605cad24aebd0fb2177bab9fe916975fbc4533845affc2eeb + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.67.tgz + version: 19.1.67 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.33.5 + created: "2023-02-02T21:10:32.809086377Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 1fb6702e9f0d2e2039b26c374a5919a3c3980592c5b8c1fea8fbe3b77ceadd3e + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.66.tgz + version: 19.1.66 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.33.4 + created: "2023-02-02T17:31:38.443114926Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 88423ae72aaa93639e65962758050b58941b69e46967241a56cccc41ff3c5185 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.65.tgz + version: 19.1.65 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.33.3 + created: "2023-02-01T18:19:01.080211329Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 698acc5cf73334793fe5fefb99f7d50d529d95a1b3efd11936b634ca8378b96e + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.64.tgz + version: 19.1.64 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.33.2 + created: "2023-02-01T15:05:58.107743153Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 1927e45a0b9bce59f3abcece42399ddce81c82abbc0bc268840bd6f758c331d3 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.63.tgz + version: 19.1.63 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.32.0 + created: "2023-01-31T15:04:27.833643739Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: a874e404eef37d40641fc2b6fd705b5d0a513783fcb797d61f6c986f896c8779 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.62.tgz + version: 19.1.62 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.32.0 + created: "2023-01-26T15:17:28.597392702Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 04b82e0b07e24c1beccc7fd7da79dd3081b837ffd53f013ee4ef6ed7fd425cc2 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.61.tgz + version: 19.1.61 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.31.0 + created: "2023-01-20T20:47:30.46236167Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 868ec113d1a7e247618f5e16ba979563504f4d8112d300cb0f2099c4d045fa8d + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.60.tgz + version: 19.1.60 + - annotations: + category: CMS + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 5.30.1 + created: "2023-01-16T08:39:41.567918972Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b8dbf3124959daf0efe2987651a6efcc0bf508a59184de5bca1e877f04b62faf + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.59.tgz + version: 19.1.59 + - annotations: + category: CMS + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 5.30.0 + created: "2023-01-13T20:35:12.336048188Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 8dba35d4e6e8d394a9b2d46e44735f69372384fa794387c7901d87c75eef4c18 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.58.tgz + version: 19.1.58 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.29.0 + created: "2023-01-11T13:39:48.357875984Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3bc62a8389a08b10b24279c5202af5c6ca328f09c95c50f1809f2caa8fe14c78 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.57.tgz + version: 19.1.57 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.28.0 + created: "2023-01-06T20:51:10.85525955Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 84a74bc4d4961e2e9b545cf469489050ac26e9a4457fa379454b1e8bbd0093ca + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.55.tgz + version: 19.1.55 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.27.0 + created: "2023-01-05T20:52:00.101508744Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: b49f363526497fe4b0fff08524641b5b0efe351f772695154ae3030cea172b5c + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.54.tgz + version: 19.1.54 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.26.4 + created: "2022-12-30T20:53:43.85078037Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 8ecbd78340e44f5c39bfa262b3f9a4e61d6ff5f47c0ba84ac07e6d2a47298901 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.53.tgz + version: 19.1.53 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.26.3 + created: "2022-12-23T20:44:37.543270433Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 500cf8064b046c76a633249f59ddaa72e61a83ae26239281362ed5b48285d6f2 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.52.tgz + version: 19.1.52 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.26.2 + created: "2022-12-20T18:01:13.265527611Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 67320a8e1af53415b0e3687c825e69671f8830e0526fe1ce41a63d4c78129304 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.51.tgz + version: 19.1.51 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.26.1 + created: "2022-12-16T20:52:05.672004114Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 80616aa5a7fc7d7bf643cf90a6109a9191d8788297f458dac47edfec447a163f + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.50.tgz + version: 19.1.50 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.26.0 + created: "2022-12-16T17:38:41.883507119Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 615400d2afa902a9f0989a39040aa7332f84230e19b5ba021002954f88e3e63d + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.49.tgz + version: 19.1.49 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.25.5 + created: "2022-12-14T21:00:52.047479339Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 143b5af3f2cc2d0abce00faecffb5e706432b510f6944849cdbe8090a0fc5702 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.48.tgz + version: 19.1.48 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.25.4 + created: "2022-12-15T08:34:13.766979733Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 142fcc283aa052eff34d291198388651eccf048736762c2dd8d96e9d6084883b + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.47.tgz + version: 19.1.47 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.25.3 + created: "2022-12-10T01:59:40.296423354Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 27a43e7e1175c9778bbb09f2785ff28aba71b42b7397bff0ce730a2e50195790 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.46.tgz + version: 19.1.46 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.25.2 + created: "2022-12-07T15:29:54.479086588Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 87e80b6377a52d0f2875c9b33f185375576b8c8e992936374c85ca7ea811e6fe + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.45.tgz + version: 19.1.45 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.25.1 + created: "2022-12-07T00:12:37.241076251Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d0930db763106a2034d24ddd40d01eaa00769942fdbe64383b4cc95717b634cd + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.44.tgz + version: 19.1.44 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.25.0 + created: "2022-12-02T18:43:33.287659076Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 771780e9718d47d7d78e145ef49fbe5382f15f11534a2c1e3068a6525c7c4907 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.43.tgz + version: 19.1.43 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.24.2 + created: "2022-11-28T22:16:29.730362486Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: ebd697a7fb1a5f12320841e492b63ee8047fb31781ff5704290865d0624c97f8 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.42.tgz + version: 19.1.42 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.24.1 + created: "2022-11-28T15:30:58.631803277Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d3d0244a544a7c9afc257bf61d2d738a140d4af7522dbacb082b5e69e67fae5b + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.41.tgz + version: 19.1.41 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.24.0 + created: "2022-11-25T18:03:48.136840612Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 437e271648e853ed97436f55f904b87ebaa3fc783c9f2b0464b4511f53675686 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.40.tgz + version: 19.1.40 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.23.0 + created: "2022-11-18T17:40:07.67159701Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 7740639ef82f9bedb521db76a1bc787d2e012937f18a556ff6825841003c4688 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.39.tgz + version: 19.1.39 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.11 + created: "2022-11-15T18:47:11.482809158Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: a9310c12eb15a84e1bf13c25a475a8746420be5c747d9e0f8a72738480933290 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.38.tgz + version: 19.1.38 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.10 + created: "2022-11-13T07:39:30.93213642Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 41549c1b6da1370df37bde8a02cdd2e780894b9ca947e9b6dfa2038a1ebb2f4d + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.37.tgz + version: 19.1.37 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.9 + created: "2022-11-09T20:12:41.784914347Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: dc4364ffb08d96b6301cc701632639dd0d97d708a0ec2b134938e216e3d9523f + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.36.tgz + version: 19.1.36 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.9 + created: "2022-11-09T06:46:39.704317689Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 729e888852051ea598f64d71f4940ebb63860fe2eb06d7784e51c8b0b0f229cc + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.35.tgz + version: 19.1.35 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.8 + created: "2022-11-08T01:32:25.584913456Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: bdabd3d407d2987ddd113ee619e1c9fd12657e15b85d354d26e26e9575fbd180 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.34.tgz + version: 19.1.34 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.7 + created: "2022-11-07T15:20:03.849108983Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 71fb09fedab0a1a1b645a16930c2388fd89cabd32bf456e51519907a4b3a992a + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.33.tgz + version: 19.1.33 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.6 + created: "2022-11-04T19:09:18.187859637Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 002f4494ca75f12ba4270f17de950d56c0a1ac08819c4c5dc3170303fde0efdd + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.32.tgz + version: 19.1.32 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.5 + created: "2022-11-04T09:32:13.475923851Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 49433921973c176ee3678c0ef5c726572bdeac64808aeb095fab72c68c03db59 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.31.tgz + version: 19.1.31 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.4 + created: "2022-11-02T00:40:32.693542479Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 854a214048fa01928376e573333b8cafe27a351a9af0be75e245c8d90f81fece + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.30.tgz + version: 19.1.30 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.3 + created: "2022-11-01T22:33:20.080529004Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: ddc62cbd62fc48852b6a34a65ecd9a4e455d5749fa209f3f1b258f3f2fefb4fd + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.29.tgz + version: 19.1.29 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.2 + created: "2022-11-01T15:56:00.662454013Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 428b932c4e2fa29482bb862dafe415344fea4450b18b850b24e423944bbbb7c5 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.28.tgz + version: 19.1.28 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.1 + created: "2022-11-01T11:04:58.312313179Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e41a2c2d5af7e4eb068ba7820ee86b74494d7abcb7c551c6b42d4036c76cacd0 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.27.tgz + version: 19.1.27 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.22.0 + created: "2022-10-31T15:03:44.951491397Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 24d586191d7854e58dff16b973b9c2a03499ae1bc3cb9d2dec0cafba092bd860 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.26.tgz + version: 19.1.26 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.21.0 + created: "2022-10-28T21:40:31.343609741Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: edebb7265fcbfdef7ab864158f8bc3a92ee3021a46c70c662c50683ad555b2b9 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.25.tgz + version: 19.1.25 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.20.0 + created: "2022-10-21T21:14:30.848936834Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 0fcc96edb9b99333b2b09d7afb9e82f033053fda73777a4f2b4e20ea3f89214d + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.24.tgz + version: 19.1.24 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.19.3 + created: "2022-10-19T13:55:32.191585211Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 26869235905953084f2dd02fa36074dd15592332c6a0b408f2a5ba794e2b2cee + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.23.tgz + version: 19.1.23 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.19.2 + created: "2022-10-18T20:51:18.278588355Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 80190c279d3d03364de37af389fafc7693cecc5e6b35f020eba44a7d3242d312 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.22.tgz + version: 19.1.22 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.19.1 + created: "2022-10-17T14:49:06.430673564Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: c321790a4dca2a3f72fca67ba5d0273962608d464375768b469568fe7e122287 + home: https://github.com/bitnami/charts/tree/main/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.21.tgz + version: 19.1.21 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.19.0 + created: "2022-10-14T17:45:54.359488058Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3802515a6635b58c6ccc5454438ca00a36d3c2edb781a62c5ebd0dd3451b8932 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.20.tgz + version: 19.1.20 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.18.0 + created: "2022-10-07T18:20:47.650899561Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 2a66fed6376f999a2fb02ae719ef030f7a63de15b67c38a9fa707becaec4c29d + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.19.tgz + version: 19.1.19 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.17.2 + created: "2022-10-05T17:40:39.861515342Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d8fb03d7fbc5db633f3830e858c6901f4a89ff7c013505113c7a503e8b46e614 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.18.tgz + version: 19.1.18 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.17.1 + created: "2022-10-03T12:31:28.757951597Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 7f7cc72e0c4081c78b2428c56bfbfd2cd5c82c1ad88208c7d9c7dc1e3a4a12c2 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.17.tgz + version: 19.1.17 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.17.0 + created: "2022-09-30T22:17:05.840375378Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 77acf7f695d69edf83a6f0cb822c336154c4f1aa212e848d9abc3f0f528197f6 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.16.tgz + version: 19.1.16 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.16.2 + created: "2022-09-28T00:41:21.01526618Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 41db5f91a5134e5015daf8a00c94bf3bd3f2de6a5eb2438b35397225955a5209 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.15.tgz + version: 19.1.15 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.16.1 + created: "2022-09-27T10:52:56.151525752Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: bd79033d16a9145dd542ca573961b04ede72d3dcd2308921155c9caed438eb07 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.14.tgz + version: 19.1.14 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.16.0 + created: "2022-09-26T08:18:34.888432807Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: c99716b22e0861b930cbfb4d3ae31907b1ed90613361e7ba43614f0194f3f276 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.13.tgz + version: 19.1.13 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.15.0 + created: "2022-09-23T20:20:27.205641588Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 5174737676dbae6409a7878e534789292febb446b336d1731e6ac97f469c1b47 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.12.tgz + version: 19.1.12 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.15.0 + created: "2022-09-22T14:08:28.058486236Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 255011668280a21cc12629965e0dd938fe3c4a9cca66fef9a08395d21d749464 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.11.tgz + version: 19.1.11 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.14.2 + created: "2022-09-15T20:15:07.079448631Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 52c230ca91a86016a7b40ae684ca705ee9a71bd2fafe0e298700977c6003e3f1 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.9.tgz + version: 19.1.9 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.14.0 + created: "2022-09-09T22:04:39.992619201Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 59b6b05fcea15aa0ce645051be05d5ce8bfa2b08a0078cf76913a2c910bee06b + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.7.tgz + version: 19.1.7 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.13.2 + created: "2022-09-08T14:28:28.413560247Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 14a39a5fc1844fa283fa1d238967b92e8135364ab0cc0b352725b3fa03fc6974 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.6.tgz + version: 19.1.6 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.13.1 + created: "2022-09-06T15:01:39.084946604Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e93d5ba49d224a59132b1193667c521b8326762884a948c2645bf57f19b17269 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.5.tgz + version: 19.1.5 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.13.0 + created: "2022-09-03T08:02:24.213463018Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 3e44f4b2fa496598a8dc72d1739108730218037a9103605ebb5d89722863fb10 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.4.tgz + version: 19.1.4 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.12.3 + created: "2022-09-06T08:28:27.653628571Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 0527502a1dfa708bcacf58a462a89c28dc578b448e47af7c606080d213a4ff6b + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.3.tgz + version: 19.1.3 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.12.2 + created: "2022-09-01T10:11:17.433422982Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 80093e5cd7b0c96dfe2f2b669c3ed78c4d7769192109a13e18c92b5ee7a5b898 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.2.tgz + version: 19.1.2 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.7.1 + created: "2022-08-23T23:43:14.823154259Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d41b44b11f9804c0de746b40cf66da3f548bba01f323f29a99e404122af5b748 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.1.tgz + version: 19.1.1 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.7.1 + created: "2022-08-22T16:14:39.668660445Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 9f89208cd06e8fc6d00bcf397bb0c95cdb9084f7fb608d0b1554c6e809553dbd + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.1.0.tgz + version: 19.1.0 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.7.1 + created: "2022-08-04T18:25:22.995683472Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 2377f884fed9a5a67678c56d78f0d279d53bc8dcf2ff185b6adb2630ac330b36 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.16.tgz + version: 19.0.16 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.7.1 + created: "2022-08-04T08:27:14.760294004Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 1eaa6ce55a830d21f49ef2a4eb6527937c9b15cb5baccdeb5bc48f0e19352ce5 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.15.tgz + version: 19.0.15 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.7.0 + created: "2022-08-03T22:21:00.104912665Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: cd8c6521f12376737c0ec62bb4058d93f1f3be94ccbff7e33eeeb623649ef83d + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.14.tgz + version: 19.0.14 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.5.0 + created: "2022-08-03T08:57:04.753638102Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: a8add5b695b1d2d52fc9a47f4a6b8c6bb3def22ab502f2925966b09958b3a839 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.13.tgz + version: 19.0.13 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.5.0 + created: "2022-07-28T15:12:51.55714028Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: dae2c2b820312204d3bb39584bf5e40814372ece317276e6dbf6b24fe5dc84d2 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.12.tgz + version: 19.0.12 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.5.0 + created: "2022-07-27T17:34:02.333161075Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: f43daa943d022cb7629b40305014c975c9c29b10a77da14ae2ffb2bd6898baf1 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.11.tgz + version: 19.0.11 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.4.1 + created: "2022-07-20T07:40:59.268505336Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 1244da8b453abf436e48819a07d486b27fbbf7b3b56aa984751051aa9d4ebb85 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.10.tgz + version: 19.0.10 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.4.0 + created: "2022-07-19T17:48:53.961960286Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: 0c80a2606065c70a41ae9031f32648a9e049269112d5bc4988ed532ec0ccbb76 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.9.tgz + version: 19.0.9 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.2.4 + created: "2022-07-05T12:16:07.717878202Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: e1f8096d25041e352b55d02c84f7d2f4bb74885a31e61ce8dd6a4b6b42b8c900 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.8.tgz + version: 19.0.8 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.2.3 + created: "2022-06-30T10:08:48.661863527Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: d35debbcd343823caa79a4c77427ea0a624eaa4ba8c18e8706f9b4d958369736 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.7.tgz + version: 19.0.7 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.2.3 + created: "2022-06-25T07:30:03.211849495Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: sha256:5f90b58bd7c71c19e4a3b243369e6fa8e2c16fe27113ed1c3498d7d9c8cf2139 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.6.tgz + version: 19.0.6 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.2.3 + created: "2022-06-15T10:49:36.818814267Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: sha256:19d79589d4456f75c469163dbbeb4bdc785cbcf27645e191ab32d37ede1a667f + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.5.tgz + version: 19.0.5 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.2.2 + created: "2022-06-10T22:41:50.115401903Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: sha256:d6f26d84b31b4c6410e6281b343bfb9bb26583aad914bbb802a25b4d2e4008e3 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.4.tgz + version: 19.0.4 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.2.2 + created: "2022-06-08T18:16:01.515493022Z" + dependencies: + - condition: mysql.enabled + name: mysql + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: sha256:d8574184b9920c0f8635ff196438bbd1f7a886727c928b935f9c31a3e6154d2e + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-19.0.3.tgz + version: 19.0.3 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.2.2 + created: "2022-06-04T03:22:07.50126306Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: sha256:f6cdca859cef2b5c18a6833d2d616f4309ee01e54849c74d7c4a1f951c34d0fe + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-18.0.1.tgz + version: 18.0.1 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 5.2.1 + created: "2022-06-03T23:06:24.334019166Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: sha256:b9d9727fedf4fbfa3f91cfaebf70c581afde38f40126651e0668c3544b351517 + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-18.0.0.tgz + version: 18.0.0 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.48.1 + created: "2022-06-01T18:11:12.985426112Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - ghost-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Ghost is an open source publishing platform designed to create blogs, + magazines, and news sites. It includes a simple markdown editor with preview, + theming, and SEO built-in to simplify editing. + digest: sha256:8f8810e76c1cf2931825bebca46ac2b390e6b037321269d274399a9af411c87f + home: https://github.com/bitnami/charts/tree/master/bitnami/ghost + icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png + keywords: + - ghost + - blog + - http + - web + - application + - nodejs + - javascript + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: ghost + sources: + - https://github.com/bitnami/bitnami-docker-ghost + - https://www.ghost.org/ + urls: + - https://charts.bitnami.com/bitnami/ghost-17.2.4.tgz + version: 17.2.4 + gitea: + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.1-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.1 + created: "2024-08-07T02:38:52.075426419Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 3548ed7103558502aa5379037b289fc26ab7f964509ed72b3cef33419bbb3711 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.18.tgz + version: 2.3.18 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.1-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.1 + created: "2024-07-25T04:16:15.084370061Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 0e19890ca9c55f0ff00bcbd39e64949adac2920b454a15ac47fc0ffea1e220f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.17.tgz + version: 2.3.17 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.1 + created: "2024-07-24T05:07:05.731293667Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: a64aaeefd1f37bf2c12e13d3e67114e345da3848be94e28135889d5e06be8a7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.16.tgz + version: 2.3.16 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.1-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.1 + created: "2024-07-24T00:54:00.689463691Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: dc1765b6c826127cf143b9c6ed4703a91b467f80351d1bf1531c4779898571c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.15.tgz + version: 2.3.15 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.1 + created: "2024-07-18T08:48:17.797040148Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 618423d2cfb79aff9ec04c45ff53a17a2bd340ba5b1f08e6ee0b01a2f2d3f91d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.14.tgz + version: 2.3.14 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.1 + created: "2024-07-15T15:55:25.876931285Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: d2ecfee66b5e4c7e7b41dfd6921a0c0b959dff90dde1bb37f895e9bf25a8dbf1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.13.tgz + version: 2.3.13 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.1 + created: "2024-07-15T08:46:08.439371292Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 9f94f347a6f5144824bf251864514f3883c0fb3e12f49eea4eefb6515fe3829f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.12.tgz + version: 2.3.12 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.1 + created: "2024-07-05T12:34:31.734211371Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: fe15f1e8d44022fce5de89946a4e3e0e183b53258cd59e7ff6e3523df33a8572 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.11.tgz + version: 2.3.11 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.1 + created: "2024-07-04T22:15:51.459289832Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 1ce9de8a2905a0584f708c1f4f9f4ac7bd4b7dc94a5fdfe590dbd231f5b6e461 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.10.tgz + version: 2.3.10 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.1 + created: "2024-07-04T06:11:05.283910148Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 0e78a8ccd25af7f7dd7f0b434591381c880ae7dd559d6126e8487e97881a9e8b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.9.tgz + version: 2.3.9 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.0 + created: "2024-07-03T00:17:15.798497574Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: cb04c9075379340f0e0c727b85c98ac9a543a503699f2d23d559889d11708e41 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.8.tgz + version: 2.3.8 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.0 + created: "2024-07-02T14:14:19.154099943Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 6cb9c166fe7c2376273953ea45041420c00ded492c75cf14950e5b240c6e7554 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.7.tgz + version: 2.3.7 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.0 + created: "2024-06-18T14:21:35.14167297Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: afae306ff7c4c2313acc992cecfde860350d304b52f8d73354b9027dcdb69bb8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.6.tgz + version: 2.3.6 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.0 + created: "2024-06-17T12:29:53.341867145Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 9d9d7fd31c4ce1a0a2dbb08ff60819b7e420597f04e7439191e9fb67d4659b64 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.5.tgz + version: 2.3.5 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.0 + created: "2024-06-06T16:41:09.914190035Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 7aa5cdff6fdc7119e65fc88e8e844494e85ce52df2712d8ba7922d5462883fcd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.4.tgz + version: 2.3.4 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.0 + created: "2024-06-05T14:16:27.528311758Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 9d41138013d59768099af0d872bdec27e720d207229275c2a54ae7e741bc1f0c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.3.tgz + version: 2.3.3 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.0 + created: "2024-06-05T09:45:36.965683091Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 5032b6780df41176a98d17b86168d9a1cc3d72a331bbf8ebd74b460bd995701d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.2.tgz + version: 2.3.2 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.0 + created: "2024-06-05T03:19:29.91146354Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 6b84e620655d12341b7348f8cd6c16318f0f7dc96f45fbb331e57d08a2cecdc4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.1.tgz + version: 2.3.1 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.0 + created: "2024-06-03T11:31:56.344630669Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 36dac26a973dc99dad71829e2d05d01f8102e19533e987df2d721db491592eff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.3.0.tgz + version: 2.3.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.22.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.22.0 + created: "2024-05-27T14:24:10.221168788Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 2f8ee5b5ff0589ecc2fb70a2435001020f95bdc653f69c0bf40a5c7c9a2a7762 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.11-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.11 + created: "2024-05-21T12:54:39.469582364Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: ecec16a5f851ba7067994b2cb2b457fe75c50faaf34183e41811c5d7da69d1c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.11-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.11 + created: "2024-05-20T09:01:56.477690573Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 85715482030b1241902117f775d5f8b4abb475b44727ffc6d7d4e74c0675e431 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.11-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.11 + created: "2024-05-18T01:18:28.932836065Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 3167bf4953b64b543bc895a87c28ad98702001054a06ad16a5e145826218d241 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.11-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.11 + created: "2024-05-14T08:54:15.646243272Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 8dc00c8d57ac0a29a1e814ecf061b7dd6e941e6ca2e2108a97f6e67ed433a872 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.11-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.11 + created: "2024-05-13T21:44:46.766162683Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: c98c9893d28edaccf7a92405c6ae72ac454579da154ae617256f6f5b73d3872c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.0.6.tgz + version: 2.0.6 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.11-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.11 + created: "2024-05-07T22:53:14.17184473Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 238bfb7305530ed4718346823873d10c7deab10728bd12b3bfbbf62023a48598 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.0.5.tgz + version: 2.0.5 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.11-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.11 + created: "2024-04-17T16:55:43.854003893Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 04fd45bef204fdb67fc0bdede3a4a97827cf8cb664aaad8f3f6bb4a32045cb34 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.0.4.tgz + version: 2.0.4 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.10-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.10 + created: "2024-04-06T01:10:39.773807443Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 2484c4da4c70a7d9528f3d4956d6059732a486b82931f0dec141520c6e4fa2c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.0.3.tgz + version: 2.0.3 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.10-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.10 + created: "2024-04-08T14:22:17.153266405Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 95a7bb641950a995294fe00d0039367fcedc43c397159b42fe50386db2ff1ba5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.0.2.tgz + version: 2.0.2 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.10-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.10 + created: "2024-04-04T14:00:18.829832924Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 0a447b8820dfe434a19798f0505b9a88c653f98934da4267428a4e6715b50d91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.10-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.10 + created: "2024-04-02T14:12:01.555439913Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 7446b9d41abb515108e91591fefbf8d93d4dea616a72cd72111af83355d20168 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.10-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.10 + created: "2024-03-26T01:50:49.09185438Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 9a86c2eecf4c3805314770e85322d93a15f7ed953c0f0e527622e8a3783d158e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.6.4.tgz + version: 1.6.4 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.9-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.9 + created: "2024-03-22T07:37:34.453500121Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: a818c6fe40fbe4c34eb2f01f3a4d82150d0184eff6dcc56ef03619d7be653376 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.6.3.tgz + version: 1.6.3 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.8-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.8 + created: "2024-03-13T07:21:16.409275802Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: f82219d773b14fa4e99de1d28144ff16de5e8d1aed4cd930046c3a06d4983f0d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.6.2.tgz + version: 1.6.2 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.7-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.7 + created: "2024-03-06T17:26:52.54592473Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 83354b5d28180d51422d08f1c5c0f199169a3e6dd50f3403d54c15d747f6f4f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.6.1.tgz + version: 1.6.1 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.7-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.7 + created: "2024-03-06T10:31:01.649738962Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 5cacce4c8f473feb4e39724d4322de72385d4ffc2f4cd90af3590634a391a634 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.6.0.tgz + version: 1.6.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.7-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.7 + created: "2024-02-26T15:23:29.734945675Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 8c3023a0abde08b9451956656f6ad005226f968b40027a8fc826bad20fc618ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.5.4.tgz + version: 1.5.4 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.6-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.6 + created: "2024-02-23T01:50:18.35665815Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 70aa4cf14be624d6132a6b21f38f61015af6e25a829a2393a2b10d25e2b7fea1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.5.3.tgz + version: 1.5.3 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.5-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.5 + created: "2024-02-21T17:47:43.560531796Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 432523a336532ee269e8226772984071caf21784e12c77a9f69ef1f447d4beb2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.5.2.tgz + version: 1.5.2 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.5-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.5 + created: "2024-02-21T13:24:25.231634979Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 3af8c3e6c19cdb731b6f45ed459efb13b53b0040ec71559c907d873c73d08ae3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.5.1.tgz + version: 1.5.1 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.5-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.5 + created: "2024-02-07T14:41:06.695067881Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 520775baebe2b491982baedef0cdfb46a6c55ae3c7830ad942777df9ac0c22bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.4.9.tgz + version: 1.4.9 + - annotations: + category: Analytics + images: | + - o + - s + - '-' + - s + - h + - e + - l + - l + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.5 + created: "2024-02-07T11:01:56.190377645Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 985c453fa0c1b1a20bfc43e831e030cf78ac7a4964736aa62f2ffdd87b80e004 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.4.8.tgz + version: 1.4.8 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.5 + created: "2024-02-02T23:56:13.251078745Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: aab4e9c3d8cce3f0e781522783966417e39ffad95a788899b49a03c1e67cfd1b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.4.7.tgz + version: 1.4.7 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.5 + created: "2024-02-02T11:06:06.112544365Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: e16047449b6b099f81676b4e5514841d9fce38ea27a68c2137360ef6899774c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.4.6.tgz + version: 1.4.6 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.4-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.4 + created: "2024-01-30T16:42:13.982203894Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: c4bb3c313e472f1745fb13d4596cb3740e4c185eb82f1bf38730213682f4c22f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.4.5.tgz + version: 1.4.5 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.4-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.4 + created: "2024-01-30T15:30:11.09970862Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: da6aea6cd90d8037a64e3d562ef8919e368b2fa8be28d7a68d03129d3fece4ae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.4.4.tgz + version: 1.4.4 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.4-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.4 + created: "2024-01-30T04:29:50.146452694Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 67e0608b7d8d6ea736069a814965223d069f1514e4b7cba0556840af8518b2ed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.4.3.tgz + version: 1.4.3 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.4 + created: "2024-01-27T01:11:49.699115779Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: f1910288f0ff7c1cdc2d5bc2e5fde4716157f1aa7db3d86aa37440ba8ad8d60a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.4.2.tgz + version: 1.4.2 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.4 + created: "2024-01-22T10:52:09.03859163Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: f3b18a5dbaa00bba185029a2b8c69960728018e7d548e64cf17e30cf7e5b74bb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.4.0.tgz + version: 1.4.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.4 + created: "2024-01-18T10:29:54.041144728Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: de18b02e9092cd879e6840d6fd18fb93368a8c0fc018574256dca4133a474307 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.3.2.tgz + version: 1.3.2 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.4 + created: "2024-01-17T04:54:37.410700576Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 95422f5b3f20a0d5f0a7eb8663356ca48d4d858282aca711b13a21e3b67e5dab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.3.1.tgz + version: 1.3.1 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.3 + created: "2024-01-16T09:46:55.376391354Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: a95d5f0dd419b5372610635386be5e6c683b554ff53911f7b8cbfb4d7329ceed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.3.0.tgz + version: 1.3.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.3 + created: "2024-01-12T13:17:28.10121808Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: bfdee874cecbf6f7484a8ee1c6624364232b6a18725ffdaba618a6b2cc8cb849 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.11.tgz + version: 1.2.11 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.3 + created: "2024-01-10T16:23:41.137515377Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: cea78e560aac8c62507e48316a511a82ffc1675fdbb13672498aaebed98d7cde + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.10.tgz + version: 1.2.10 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.3 + created: "2023-12-21T10:39:42.252777565Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 90b30b57c46c402390dd0351bfecb4fe8700ada44827d483bd95278617782861 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.9.tgz + version: 1.2.9 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.2 + created: "2023-12-12T17:15:23.331262329Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 7e11b28ac11c0bb661def4a86ae68c29dca6fad6ca8848d7fe1ba3155406fa43 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.8.tgz + version: 1.2.8 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.1 + created: "2023-12-07T10:18:08.523420724Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: a313c2ae7c67bc30f5dc2ba5da521b010c6bd627b83b3ab23325de18e459db37 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.7.tgz + version: 1.2.7 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.1 + created: "2023-11-26T21:33:50.303675228Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 639a9686c545cb62486ee6ca02fa281448e7a53ebc9518b3abe44176d4c73946 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.6.tgz + version: 1.2.6 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.21.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.0 + created: "2023-11-23T11:43:52.079315237Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: e00f8c966a83bd29d69e943c8c121d1469c78856e1e7fafabd09df81a1634b11 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.5.tgz + version: 1.2.5 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.21.0 + created: "2023-11-18T10:11:43.799003515Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 7bb94dd41133952546048f8a09693f05f64f5ca63f0eecb6d8ebc3aeb1232a5c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.4.tgz + version: 1.2.4 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-11-09T13:37:37.405097818Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: a0b5b1a383701857b4fb5bb1eaa1ee225b9ed963e321ac2b830bbfa5aacab85d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.3.tgz + version: 1.2.3 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-11-09T06:59:08.246272362Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 2b7d13552adc7c900d6c18fccebd1a4f84e37fa55e13d9077380beb4ab9807da + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.2.tgz + version: 1.2.2 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-11-08T16:28:33.188977526Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 2047b8b582c3adf23460dd1af192cc5f9c6f4676254dfeabd822094a30f8fe03 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.1.tgz + version: 1.2.1 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-11-07T18:31:04.079486379Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 6dfd4d39af4d5f496f062ddb9b1a0bfcb0d5515854c029afc259b1e39de03bf8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.2.0.tgz + version: 1.2.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-10-31T15:16:55.782238781Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: e1b902ba0c1c1eb447b0f4bc444060b9601a8aac68b2f214131f2f715e3f8939 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.1.0.tgz + version: 1.1.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-10-12T15:07:42.77137698Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 2b05b381aec4836333493997ee7c88f9990d4e6271ff9976d6a044d14cd4b90b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.0.6.tgz + version: 1.0.6 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-10-11T04:18:00.449610653Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 3dd444db4d8ce1508432be78cde457fbc8bf796e0ce284dfe083ef921adce017 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.0.5.tgz + version: 1.0.5 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-10-09T23:38:47.830566648Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 6e3f095d625696bbf9ef06c38e2c849bc987ff361da723cb41998b49b61651f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.0.4.tgz + version: 1.0.4 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-10-09T18:18:25.220885189Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: d8811bd73950b77145cfe83a00f21ad1ec2b57d3658f477476ae72e1c1b7faf5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.0.3.tgz + version: 1.0.3 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-10-05T10:37:22.617894044Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: a3351083bf64e4c769e9d73956862963dba63a847d5a48f4da4e37ed11840433 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.0.2.tgz + version: 1.0.2 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.5 + created: "2023-10-04T07:48:00.120564792Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 36272a7fd48b6a746e8686f6f0f11d03fa89e62ca497c14fcdd4cd7c5b0774b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.4-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.4 + created: "2023-09-29T11:21:51.39411033Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 4fd9ae38684116d32ef0387f028cb8533c66120ebdfdccfc8e1b6fe7dea73da3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.4-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.4 + created: "2023-09-26T16:59:51.311134553Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: bde617186c60c87a72842df3e286c00cd860c69ae0295e20b6c491e1149c38f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.4.3.tgz + version: 0.4.3 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.4 + created: "2023-09-08T12:18:06.622947876Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: fda9ef733224184eaf24202fdc9311636e8fc813b9da54214eef13429105f0ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.4.2.tgz + version: 0.4.2 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.3 + created: "2023-09-07T10:34:28.571083627Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 0c2501f1517cf3d93e8116b85329ae3d570c4900bf0981200d52a6e89f7ac380 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.4.1.tgz + version: 0.4.1 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.3 + created: "2023-08-24T08:16:44.557266992Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 5d561fa427b8a03883a54196fe22a8c08ce1e2f8366e1695b2dd7c8f41d02bf0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.4.0.tgz + version: 0.4.0 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.3 + created: "2023-08-21T17:07:22.34474933Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 20f4b6a7f4b1f9f81dba75893b436abd60a96d5cb3ff5710ce12de6074794d4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.3.9.tgz + version: 0.3.9 + - annotations: + category: Analytics + images: | + - name: gitea + image: docker.io/bitnami/gitea:1.20.2-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.2 + created: "2023-08-17T17:14:40.834078738Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: feb96600471d4e08c0e32bf136a394f000df6c36ad0d0e78b3c86fb26571d04f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.3.8.tgz + version: 0.3.8 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.20.2 + created: "2023-07-30T17:27:21.109736679Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: fa0d30553b54693564d7e6dd12a4a03d4bfd5ed94fb2de8fc7d2c9fc258864c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.3.7.tgz + version: 0.3.7 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.4 + created: "2023-07-15T09:44:12.494607831Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 2ede6918e0da9916e25bc3ced39e9e29d0ffd4b59883e7e9f6c841dda0d2d899 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.3.6.tgz + version: 0.3.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.4 + created: "2023-07-04T23:53:56.882056088Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 22fd1b5e3086e959713bbbeeaba5120390697e4d12d34f8c641a1bcea0228da9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.3.5.tgz + version: 0.3.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.3 + created: "2023-06-22T15:35:32.809858465Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: da817c5ac1c70b9cbe90a84b77789a70f46003933ebcb7055e2d137bd5d8f16c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.3.4.tgz + version: 0.3.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.3 + created: "2023-06-20T15:16:48.96336242Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: d7c4b9bd17675e1dd5d5f2a51e3ff4d827833106beceb7481465580b501e02c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.3.3.tgz + version: 0.3.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.3 + created: "2023-05-21T15:32:04.436708551Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 5a21f119b23f294a69044ec534d280ded6b7dfa8988e6e85c83c691ddcaeb28e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.3.2.tgz + version: 0.3.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.3 + created: "2023-05-16T21:56:53.124272052Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 39b2a19d6332423609e99ecd665ab510dfbd5a7bcf290df8955b01c3732791db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/gitea + urls: + - https://charts.bitnami.com/bitnami/gitea-0.3.1.tgz + version: 0.3.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.3 + created: "2023-05-09T12:28:59.630441278Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 87af474c025888bb795497111f373ff55e2d2f3b4845986d5039d50cc997cc44 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.2.3.tgz + version: 0.2.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.3 + created: "2023-05-03T23:08:53.166015204Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 6218b5227f43f44073bc404d98b55077dff74baffd8ad8bd99fb1c0658aa994e + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.2.2.tgz + version: 0.2.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.2 + created: "2023-04-29T02:12:52.379819756Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 7b396d26f9b0f4d8bb237f7d9c8a985e90d5c207452e6dd2fd181894b93d0dc4 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.2.1.tgz + version: 0.2.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.1 + created: "2023-04-13T05:10:02.40388764Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 6a542edd05aca2057af1a97c8ee0bac1a04b51ffa816b252b0d4e9c89b630f21 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.19.tgz + version: 0.1.19 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2023-04-01T12:17:15.415402473Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: b2c6f4281e52ff13a8752d71e731ed1aa25c1ed34b3ed5efa39d5dba309dab8d + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.18.tgz + version: 0.1.18 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2023-03-30T21:17:22.680437602Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: aa5794bc83474ecd8a157136e4e89258d2c7708afa0b9342df07aea0c058ce63 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.17.tgz + version: 0.1.17 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.19.0 + created: "2023-03-29T15:06:57.59794307Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: baa2071a37900a9c68baca92108bd5d809d3c882cf9bc1ec604e2422f009902a + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.16.tgz + version: 0.1.16 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.5 + created: "2023-03-18T23:53:34.861441239Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 07896bba3da3f0729d676820e82752b3b718f02ed618f1bb706a506c919a5274 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.15.tgz + version: 0.1.15 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.5 + created: "2023-03-08T07:53:11.403641037Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 60a0a1214b1dbabf8179f45e6ef74199e63731b6ccc82d5f98c05bdcce37ec22 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.14.tgz + version: 0.1.14 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.5 + created: "2023-03-01T10:50:25.057363412Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 7d7f64d78538dfc5d1ad19037846561d99341018e60acb126f4b2a77dedf2c73 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.13.tgz + version: 0.1.13 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.5 + created: "2023-02-23T01:18:15.733496613Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 9b6e2b99b3afc0ade39aea0ce100b121e56be20d965bb69e0ec46ab0a7a97e1d + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.12.tgz + version: 0.1.12 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.4 + created: "2023-02-20T06:11:38.896871819Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 61ffa6116a328065ce6e449c21b53e8388551d2dc5f3d666e528fd318802248f + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.11.tgz + version: 0.1.11 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.3 + created: "2023-02-17T15:34:46.893358804Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 594ff70bf6d85e7f667b41b09da3622479c67eeee6866a40d44c40aea0e9d169 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.10.tgz + version: 0.1.10 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.3 + created: "2023-02-02T16:53:24.477680452Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 4981cbafbf074e9f49a59e45444047df08263c17938d206f630d9d10c81af50d + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.9.tgz + version: 0.1.9 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.3 + created: "2023-01-24T07:27:08.830679511Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: f17169d3aef24a182c514298ebdb1e72c1b240dcf0fd2b6f7c9adc337d099f7e + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.8.tgz + version: 0.1.8 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.2 + created: "2023-01-23T08:38:13.851760238Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: c08cc32dac8184e30296bede8724541ad51a91ea23b5c7e14918e0702c9ef7fc + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.7.tgz + version: 0.1.7 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.18.1 + created: "2023-01-18T09:19:30.077578643Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: cbb3c00f3ea69e199cc6386eabf71a207876c5ad83dd79bb8e79ebc303266119 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.6.tgz + version: 0.1.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.18.0 + created: "2023-01-11T14:49:45.58461066Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: b079de69bc30bb56cd8f6c142f145cd0d69a7dec69d27a6a0dce23539b8dff32 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.5.tgz + version: 0.1.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.18.0 + created: "2022-12-30T09:49:37.845524929Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: ad3653e14ee26cb8f76bf9e20a9b6c314328e4be505f5a36b172b43a3fb95f28 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.3.tgz + version: 0.1.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.17.4 + created: "2022-12-22T09:15:02.178969978Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 11aeba964ff1f2bd7612b42c05d5616e30d2f3b4926fe1d991140916937fdd50 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.2.tgz + version: 0.1.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.17.3 + created: "2022-11-28T14:16:54.365875832Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 9df9cc6188039994e7daf8713f734cdfe176a5cd0b12443ff06222a60319ef86 + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.1.tgz + version: 0.1.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 1.17.3 + created: "2022-11-28T10:53:52.539948746Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Gitea is a lightweight code hosting solution. Written in Go, features + low resource consumption, easy upgrades and multiple databases. + digest: 1a28379d12aab6976105e51eea508e0d6be4f11c1c2f767ed9dcef1e6772748f + home: https://github.com/bitnami/charts/tree/main/bitnami/gitea + icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png + keywords: + - gitea + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: gitea + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/gitea + - https://gitea.io/ + urls: + - https://charts.bitnami.com/bitnami/gitea-0.1.0.tgz + version: 0.1.0 + grafana: + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.4 + created: "2024-08-14T21:10:58.354015524Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 8c4398150f128933ccd85bcc308b4f97503f9e8363efecc25a78b1be573fe2bc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.15.tgz + version: 11.3.15 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.3-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.3 + created: "2024-08-08T15:13:07.870887505Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: a86168f91fc7c24863ba4acbb9fde46e88153096e46898c8b01a2c9d67e64bc4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.14.tgz + version: 11.3.14 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.3 + created: "2024-07-30T17:34:13.646777542Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 67d2cdc27395afde2ecbbfbdab6feffff60a31c5b09e990643c56ed74ebd8e27 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.13.tgz + version: 11.3.13 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2024-07-26T16:00:27.339546569Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 0f8c9f6e668d3af4b52d90c6987539fc474ea2112ef1e6f8351f37ec0fc50b87 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.12.tgz + version: 11.3.12 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.0 + created: "2024-07-25T11:34:42.467329014Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 5167fe4d2e7dbe55678c21287d6cbaaec20f3e50f1058fdef1a111adf7ac707d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.11.tgz + version: 11.3.11 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.0 + created: "2024-07-24T05:28:38.356427739Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 44c2c07fe07f55ebe49cf5c4ac8e165945e5f4776d53be951731cfd7621ca7e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.10.tgz + version: 11.3.10 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.0 + created: "2024-07-16T13:19:00.45444128Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 4c3a088cf1f0b8eed191d825445d934020a7d46997b21f81ba10e805460263ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.9.tgz + version: 11.3.9 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.0 + created: "2024-07-05T01:32:53.052988425Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: d7ee6c92e2ca03f8bdd6ba7cad6811eb1ed232382b598d3d0cf532a380793d24 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.8.tgz + version: 11.3.8 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.0 + created: "2024-07-03T03:22:10.646860657Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f04fd0d51aad20933e1ad801f17d261c54e26722474a45e5f7f6ae0edb04e71e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.7.tgz + version: 11.3.7 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.0 + created: "2024-06-26T12:35:26.956257782Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 754af554c78bba1ea5b1ba9a05c0eae140abc51d82c7d1f294aaa66250578790 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.6.tgz + version: 11.3.6 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.0 + created: "2024-06-18T12:06:05.180992277Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 99e1643317d57a82eb524f2f99541fc283745850af2c318095a0f96e9fea767f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.5.tgz + version: 11.3.5 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.0 + created: "2024-06-17T12:38:09.934004911Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: b97dea3795cf16dfeee7aa60ed70b4708607f7a19db32f0dfc004eb19d8f7f21 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.4.tgz + version: 11.3.4 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.0 + created: "2024-06-06T15:42:31.804301179Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 5b03e6b36e0d04e52f2e997b42f1739d056a408209aca907fb4c760f275ad034 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.3.tgz + version: 11.3.3 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.0 + created: "2024-06-04T09:45:46.212742815Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 2f2656b3b74aaf2e01ea6963309b0e2f2c6e72dc91d4d33c247c9224cfd01c8e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.1.tgz + version: 11.3.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.0 + created: "2024-05-29T07:09:01.180801464Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: bf7bcec24b669dbb729ad7014d4f4906d4dd9a6732b7784071d877ee3e5390b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.3.0.tgz + version: 11.3.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.0 + created: "2024-05-23T08:53:04.166489351Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 584cf5820a4bca190e970174dfb0687c86e066efaf908580eb1ab73245c98535 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.2.1.tgz + version: 11.2.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.0 + created: "2024-05-22T07:33:45.555185945Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 8ddea9eb081222817802ce12ccdc4a64d9299cf109b198fc878976b854fee5a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.2.0.tgz + version: 11.2.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.0 + created: "2024-05-21T14:19:50.364098124Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 4349d4d627f470dff1394333c8d364dc230368da5865833739603f9ef87b475a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.1.0.tgz + version: 11.1.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.0 + created: "2024-05-20T17:20:53.909656565Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 77aef476d3a3cd20078c06963c8d4d1102af845c9fa205e538f3f87b93b14fc4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-11.0.0.tgz + version: 11.0.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.3 + created: "2024-05-18T01:29:34.132952081Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 2adef22ae8d6615a54fc82517618335a4be05e0c787c4f84e390b46db188b5b9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.1.1.tgz + version: 10.1.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.3 + created: "2024-05-17T09:42:11.938033892Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 0b69b8155fab05c0b8fe550d6ee56911a355a4b7b909a3cd7e101f1138ed51ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.1.0.tgz + version: 10.1.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.3 + created: "2024-05-14T16:09:44.703915012Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 2e9e8dcc752815b23b59979513dd36d2ec99961165559b6853d7efd2d7b2e164 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.12.tgz + version: 10.0.12 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.2-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.2 + created: "2024-05-13T22:28:31.959852261Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: dc8f65d80d45b36eee6e327cce89aafddc31e34d1a3cfb5fe748136a52f496f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.11.tgz + version: 10.0.11 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.2-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.2 + created: "2024-05-07T22:48:18.262238958Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: b7ed342fd3464aab913039053a51af149e49cc3062bbe9a9e839dfa906f37b4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.10.tgz + version: 10.0.10 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.2-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.2 + created: "2024-04-24T14:07:27.952711379Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 031b1dc41b35e6296cc2bd9b308339f9d04100598875a5b70da4d1ee4a643bb3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.9.tgz + version: 10.0.9 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.2 + created: "2024-04-24T13:31:13.061251432Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 7eda34c08e018dc7d016658c20e33e8f7bbc2ed8162472cde7a6d77a9bb1128b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.8.tgz + version: 10.0.8 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.2 + created: "2024-04-11T23:09:01.037715284Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 1aa3a39789f2f2d0ed097a58ac89288227d1b946c048fbb036418ab0413344f4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.7.tgz + version: 10.0.7 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.1 + created: "2024-04-05T23:39:05.648704951Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 04a05c5af0bb997c2bb93037829872a925ae3a0ddf04180d33f44245ee444e4a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.6.tgz + version: 10.0.6 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.1 + created: "2024-04-04T14:56:33.955038021Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 59db08a8345d24cc259add6a9ef5ec197d7a1ea030f7023263110d75fbfb7a83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.5.tgz + version: 10.0.5 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.1 + created: "2024-04-04T09:41:13.486473733Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 923f08123368efc3c1bc25a268494f3aa08501c67ee1008b9dd057738812b4da + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.4.tgz + version: 10.0.4 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.1 + created: "2024-03-21T20:17:54.664598616Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 9a8cc391baa0ff9d2828f226a34f9f4d72b8bc2713e156eb7074315cb8c68283 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.3.tgz + version: 10.0.3 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.4.0 + created: "2024-03-19T12:50:16.762584096Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f924919e23208254746ccc261d488cac8c2f4abbf8fd58e738bbd32eeee3196b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.2.tgz + version: 10.0.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.3 + created: "2024-03-19T10:31:30.188409362Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: ad39c1d742bdbed9ad95660bb3cb68c45b0087159f1e0f369ad40d924f043f5d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.1.tgz + version: 10.0.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.3 + created: "2024-03-15T11:09:33.64863314Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 76afe26391c9797934c6650f245595c84b72802cafc3c08382e555c5e3bcdb4d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-10.0.0.tgz + version: 10.0.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.3 + created: "2024-03-08T09:25:27.719566639Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: d35e8799f140e162117626b7bc20f4cbe77ab9e5eb5fa98fead8a70fe3f1fe2e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.13.0.tgz + version: 9.13.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.3 + created: "2024-03-06T19:08:57.075071667Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: b21bb1fd8984c5765db64498f90526a35cdcb6c29ab02300122c80e441b6b745 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.12.1.tgz + version: 9.12.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.3 + created: "2024-03-06T11:45:13.520730064Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 89bc7420c743fe18b15ee95f21225c88b1fd2502dbe3c8119a36d24037efb31f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.12.0.tgz + version: 9.12.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.3 + created: "2024-03-05T15:01:21.167784573Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 7c0a738af38cd34bfd573ebaa82946eb0300f8ba2ab19e7ed3b5fb0da698e01c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.11.1.tgz + version: 9.11.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.3 + created: "2024-03-01T19:27:33.249132545Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 3cf79118597f417802352ffd5cc845130cd7e189d3d502bec5b8c151e0be6323 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.11.0.tgz + version: 9.11.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.3 + created: "2024-02-21T17:56:57.910843771Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: a7a279df2f46d03c11f85753cc813072f8d1dea0fff23d1b9fdff3fd51531ebf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.10.2.tgz + version: 9.10.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.3 + created: "2024-02-21T13:15:08.091019528Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 46bdf22eb7d858606acb05f2d03566faff045a8c25b4887a1307f3b1294f8f88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.10.1.tgz + version: 9.10.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-02-19T10:39:07.164278795Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 57078d18d499fd8a069acf7f05c10c9a664a88c32b9cc4a3c263c0ce2dcc55f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.9.0.tgz + version: 9.9.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-02-08T00:30:33.659714877Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: b5fce14b6573b8d312660b36fa43fffb0c6633effecf3a215de689a327920ba7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.8.6.tgz + version: 9.8.6 + - annotations: + category: Analytics + images: | + - o + - s + - '-' + - s + - h + - e + - l + - l + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-02-07T11:07:41.471518583Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 5592171e37d8ff6bf34625772d04234952d7ab528951d3ff6ea4245cccf5463d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.8.5.tgz + version: 9.8.5 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-02-02T17:01:02.253315439Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 1dccb40c488fd03176e6839ce1f1d8afc87e4faec54c5adda7b59a42f8331ff4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.8.4.tgz + version: 9.8.4 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-01-30T15:18:20.03298482Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: ad313760c6fdafed718f5ac9e4765593038e23c47a1a5e2fbb26255fa04f6117 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.8.3.tgz + version: 9.8.3 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-01-29T09:08:47.684158693Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: a828edb6c537b87e682f1bdcbc5ffd333af2734fef0de25b9bf3676f3d9957fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.8.2.tgz + version: 9.8.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.3.1 + created: "2024-01-23T22:19:31.301688215Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 4af58c4bb599983b968659f4d5df7efda0fbfe0a30c80821f3fdfa7d084ba0f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.8.1.tgz + version: 9.8.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.3 + created: "2024-01-22T16:28:42.395364506Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f9d1f0e0514c1fd3162e0be9b8270fb0b95587f5612dc1ce99b76b6f627ce96d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.8.0.tgz + version: 9.8.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.3 + created: "2024-01-18T08:34:53.062345796Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: bf4d35707d3a9fc359248be9bf215be24c86ccae15e0123ced74f03f5d21218d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.7.1.tgz + version: 9.7.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.3 + created: "2024-01-16T11:15:28.841837634Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 6199fb7532f6e5e93797550d296ee26505eb76369e8cc72b236057cf7a1117dc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.7.0.tgz + version: 9.7.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.3 + created: "2024-01-10T15:33:42.663574674Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 403fd5982d7819dc1ab632c7f15ff635ff42a8a4fce0136bc59d4da2f6e4100d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.6.7.tgz + version: 9.6.7 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.3 + created: "2023-12-26T16:44:33.131141833Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: cbb96bd66d81146cc5b44671f06e8cc9ce185703ed6e2043d7ae520c28f741c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.6.6.tgz + version: 9.6.6 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.2-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.2 + created: "2023-12-07T12:01:22.535737358Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f768e27d79f35497e047f6ea820026bb2f4a3fe9f3bf86d85e98a41415f04d0b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.6.5.tgz + version: 9.6.5 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.2-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.2 + created: "2023-12-05T12:16:00.146028181Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: df07e96ffabe28e07b9d7ce03ddf7690eac36b41e7e665ea3f3a8f08efdaccf0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.6.4.tgz + version: 9.6.4 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.2-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.2 + created: "2023-11-25T11:08:24.650343813Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 1e70bf30e3160864bfbe5e5309b05934c75a25ef9b8647dcacaddc9d521b4460 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.6.3.tgz + version: 9.6.3 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.2 + created: "2023-11-22T14:17:06.946982572Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 913561dfbcda47ba984576f0b5b3afc5d9ca6962d5e1c3dd5c1c6639329aef7c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.6.2.tgz + version: 9.6.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-11-22T02:05:44.646799513Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: ec27aa67ec574b2eb4efd1c93374740717e23ebc21a24b18f366f4e3be305a04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.6.1.tgz + version: 9.6.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-11-14T15:33:16.840576431Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 050d3548163fb8b5827d0d73b1c1fa99ce68bf0661628f8bf766cb23a7f0b970 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.6.0.tgz + version: 9.6.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-11-09T11:06:07.721387962Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 3a9a79d53e7dac8fb9835b54b6632bc0cf21a564b9f5f269242d5cd6ba34cd1d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.5.6.tgz + version: 9.5.6 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-11-09T10:09:40.852424103Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 4753362efdf4fe9a999c4e04f511bd6f3ee874c9d43b2e70cfe55561dfb2c2f0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.5.5.tgz + version: 9.5.5 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-11-08T19:29:51.786618544Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 0ed3a5d7710a671e2877d6b749263b2de518664bf13a6c5ac874accd18088b04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.5.4.tgz + version: 9.5.4 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-11-08T16:31:21.044375305Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 83b9f159f29c6ea9065ccb144d34c4c786e1f9820a57b4b1c640ade2d0430bc5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.5.3.tgz + version: 9.5.3 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-11-07T11:33:38.505470431Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 90ae1c86a774b1db10c38f0972e01938117c1a25f84552f5a223609276f1e0d7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.5.2.tgz + version: 9.5.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-11-06T16:16:26.996201858Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 96993b149ed646ff3a6c29a3c7cf49f94a1b700555bb5d55db5af5dc97e1b8db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.5.1.tgz + version: 9.5.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-10-31T15:29:51.106431682Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 422974a93e5259ffb3591ada2c1fd674478bf7477549dac3d9f26d98eea44d96 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.5.0.tgz + version: 9.5.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.2.0 + created: "2023-10-26T09:50:02.537785884Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 104c3091a94a13b1dd12a9700c7a682cf4abfe636aa7b242771cb479338d32a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.4.1.tgz + version: 9.4.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.1.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.5 + created: "2023-10-25T11:53:49.684290911Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: c66923d5215103723836aa3c883bcf93691b0f73ad1b7831f29df66ca87d49fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.4.0.tgz + version: 9.4.0 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.8.3-debian-11-r4 + - name: grafana + image: docker.io/bitnami/grafana:10.1.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.5 + created: "2023-10-12T21:24:22.709078571Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: bc767109668fc040d3896b13f60bfa7e3973f29bce31caad7a6c12da4b56d252 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.3.2.tgz + version: 9.3.2 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.8.3-debian-11-r4 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.4 + created: "2023-10-12T15:12:33.838521624Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 7ce4853903a058fb888e73b0f519ca21eb081cffcbc0e8ec253b29492686786b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.3.1.tgz + version: 9.3.1 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.8.3-debian-11-r3 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.4 + created: "2023-10-11T11:59:12.470438187Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 8817b131a20e110c80b21f8f7c3b921174c5dc51859c3eed24f14cc8b1fed3dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.3.0.tgz + version: 9.3.0 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.8.3-debian-11-r3 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.4 + created: "2023-10-11T06:24:19.925450327Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f554bfeda1b7270f24596e05072ec53507e83c35899652e870fb72ad7b496246 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.2.6.tgz + version: 9.2.6 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.8.3-debian-11-r3 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.4 + created: "2023-10-09T23:29:58.760008012Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: e9fb4ef528ff484315d4540311948c08dbf9d315047a44bba7bedd292edd0ffb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.2.5.tgz + version: 9.2.5 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.8.3-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.4 + created: "2023-10-04T00:09:34.823424421Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 64925f5bd225666c2d966ab6818e78bcf88239732fed615c3872647abeec1585 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.2.3.tgz + version: 9.2.3 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.8.2-debian-11-r6 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r83 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.4 + created: "2023-09-30T03:58:40.373469633Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: d2c28247866a7b0eb57b00d8e1875dc3247beacac8491152bfe8ccbf5b954d17 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.2.2.tgz + version: 9.2.2 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.8.1-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.1.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.2 + created: "2023-09-19T12:07:55.472779008Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 6402dd8f9c06d73911da1531c1c0cd39272f6a79a9684de986785669cccf136d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.2.1.tgz + version: 9.2.1 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.8.0-debian-11-r5 + - name: grafana + image: docker.io/bitnami/grafana:10.1.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.1 + created: "2023-09-19T06:32:21.793481938Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f1aeebce8b4aa9376ccf6c7fecbabc72690a47fd1d350a133a2ea4b78336e063 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.2.0.tgz + version: 9.2.0 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.8.0-debian-11-r5 + - name: grafana + image: docker.io/bitnami/grafana:10.1.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.1 + created: "2023-09-01T03:52:58.214184566Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 800e78c1ee0652eed2653cb2a3ec88e6e590e2d59187a03138a33e258be51b80 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.1.1.tgz + version: 9.1.1 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.7.2-debian-11-r24 + - name: grafana + image: docker.io/bitnami/grafana:10.1.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.0 + created: "2023-08-25T06:32:59.703581125Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 9d959fd3f0a4728f2894b7ae6b3a8ec3292b57164fdafa5665e063b58b5ace13 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.1.0.tgz + version: 9.1.0 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.7.2-debian-11-r24 + - name: grafana + image: docker.io/bitnami/grafana:10.1.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.1.0 + created: "2023-08-24T01:21:41.116504741Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 94cd02b3da293d0bcfa9ebe67553cc1982a7de27adbfccec0187325b2a7e06f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.0.8.tgz + version: 9.0.8 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.7.2-debian-11-r22 + - name: grafana + image: docker.io/bitnami/grafana:10.0.3-debian-11-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.3 + created: "2023-08-21T14:46:23.516930956Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 1c716dc1547876a3167552960032933b43f860fada5066f742b88f6e7d4642ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.0.7.tgz + version: 9.0.7 + - annotations: + category: Analytics + images: | + - name: grafana-image-renderer + image: docker.io/bitnami/grafana-image-renderer:3.7.2-debian-11-r17 + - name: grafana + image: docker.io/bitnami/grafana:10.0.3-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.3 + created: "2023-08-17T17:10:42.998510645Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 915228249ade792a3b02a9514266147f3fd55368ab32c2f6c3cfc15520e07252 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.0.6.tgz + version: 9.0.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.3 + created: "2023-07-26T14:48:20.985208977Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 7707768c5ef540f853e5ddfbc1b92ab2f12d8120773dedc6bb3fba066e6df82a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.0.5.tgz + version: 9.0.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.2 + created: "2023-07-25T17:29:19.271547301Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: a242802b6adbed5f9c03d94b817190047a58bf9787d94966e9f8aee300a5ea93 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.0.4.tgz + version: 9.0.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.2 + created: "2023-07-13T16:20:57.335580195Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: ef459857320f9b09bbec7b35db614b6f769c6de063a38506ea9275db6ef4fe80 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.0.3.tgz + version: 9.0.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.1 + created: "2023-07-13T14:33:23.091027453Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f2401395302865ae66f6bf0f19ffd430b0365518ce8269313071e61111238dec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.0.2.tgz + version: 9.0.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.1 + created: "2023-07-06T10:20:15.646137538Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: bee601a5d7b8c00bac4ce3bd3296548e7568882107eaa45741b6fc133d3c5d00 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.0.1.tgz + version: 9.0.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.0.1 + created: "2023-07-05T15:22:51.031240697Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 5f5576a9fef2150243c49bedb5915d06333a6fbf3586b6dc8edbaffad725da1b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-9.0.0.tgz + version: 9.0.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.5.5 + created: "2023-06-22T22:03:10.808219179Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 35abd4c35b48920110a4550d66441a50e31a14e258cb00ae852dc4a0237f329a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-8.4.6.tgz + version: 8.4.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.5.3 + created: "2023-06-06T14:00:50.439547342Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f423d45720ec30f619f991ccd196a8296556d57e779a60b965098d6bf78cae37 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-8.4.5.tgz + version: 8.4.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.5.2 + created: "2023-05-24T08:35:04.338160422Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 2173f4b324792880ca046373e7372701d8124be8b6eae10ec7d42828b0d8c027 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-8.4.4.tgz + version: 8.4.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.5.2 + created: "2023-05-21T15:43:40.648108716Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: a763b0225654cd4f52bbe74bf0460b36d07fb82268b9ad56122468be0e7e89a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-8.4.3.tgz + version: 8.4.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.5.2 + created: "2023-05-11T05:58:51.866967578Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: d2e5bb283ec9b0bcae28e90379a5099e3419736b747e0afc6cb7b71440a84a97 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-8.4.2.tgz + version: 8.4.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.5.1 + created: "2023-05-10T08:18:48.151106133Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 8fff8e97bdcfbbbbec5ee6ebb06f6b8e54f772e146c468e91b7e3b3899e54e46 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana + urls: + - https://charts.bitnami.com/bitnami/grafana-8.4.1.tgz + version: 8.4.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.4.7 + created: "2023-04-01T13:40:57.930126311Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 9662d4ce6ba6053c0b41942cebd8da9cbd15d64e17aace8e8c9afff05a1bd7d2 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.33.tgz + version: 8.2.33 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.4.7 + created: "2023-03-23T08:38:47.672736042Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: c70ede6e9912b73f82f3ecefa6314485f394f4fe1e38946024d434244b3735e6 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.32.tgz + version: 8.2.32 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.4.3 + created: "2023-03-19T01:40:54.246227081Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: af88ede9b87403762ee0ab689b0aed2c280f0a56c0bbef2e3e34fa2b75e901a9 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.31.tgz + version: 8.2.31 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.4.3 + created: "2023-03-03T10:46:46.306950127Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f2a26b8dba98f8183f0adff0ac9e876edc2913824da44599d5fadc0cc9bd4c16 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.30.tgz + version: 8.2.30 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.4.2 + created: "2023-03-02T20:55:27.278925458Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 5f2299dd353f1b3ecdadd5bff37c26fe57a80b1d70b5f248637e04b87722b956 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.29.tgz + version: 8.2.29 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.3.6 + created: "2023-03-01T11:00:57.543058256Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 54537354e15cac671ae00d4f7d503f557dd13940830ffca53f71838128f17c96 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.28.tgz + version: 8.2.28 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.3.6 + created: "2023-02-17T16:49:19.708615093Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 340c650e5c2237b3efc509d2f070e3e775de4cac52dfd2765b566755c6d96e55 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.27.tgz + version: 8.2.27 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.3.6 + created: "2023-02-02T08:22:18.6469337Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 2290b956975c9636e9f96bbe6f0976ce4a8264fd96c3f2d63219cc9ef9c8d6f7 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.26.tgz + version: 8.2.26 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.3.6 + created: "2023-01-26T21:05:34.244285256Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 9eb5d3fe942b573081adc1bd727f0fb8dff5c1f0a280277ddc67b8ca1bf37269 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.25.tgz + version: 8.2.25 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.3.4 + created: "2023-01-26T13:48:51.682073017Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 154b41a590bdbd55073515d69b8782168e67b419473eaf8b48f3929fdde282df + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.24.tgz + version: 8.2.24 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.3.4 + created: "2023-01-25T11:04:53.979036323Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 512f5505ffb50fa37bdc992a04b65e57965c113c0e8556b4833626974272f823 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.23.tgz + version: 8.2.23 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 9.3.2 + created: "2023-01-16T18:12:40.214032193Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 2117f32365135d928cf05cc9f5b20861d2367fd1dce7511a7d29be8eea3ac07b + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.22.tgz + version: 8.2.22 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.3.2 + created: "2022-12-19T11:41:21.640391911Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 21a89b7cd4cf433b620b3a6bb46e29337656d382e2fa959920c582157199b69a + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.21.tgz + version: 8.2.21 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.2.6 + created: "2022-11-24T10:26:14.812240812Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 4bf6186c8862c5941ac6ddb746a8b1b203ab5ca59f9d5217d5050b42dbf957e6 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.20.tgz + version: 8.2.20 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.2.5 + created: "2022-11-24T07:15:48.782412193Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 4b727c6e608c4b31e7c6ef2d3c1d6d69860df798ad5814cef354e8acf812da2c + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.19.tgz + version: 8.2.19 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.2.5 + created: "2022-11-16T20:02:54.777697615Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 36a3725fc168b14fffea3103db3c05fcfa99440835fb0cdddb5e4bebc0cb3365 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.18.tgz + version: 8.2.18 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.2.4 + created: "2022-11-10T09:32:37.418657697Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 93dcbf227215ceefe8d37aedd96dfac8614002d8be142708e5a550c2640c05b3 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.17.tgz + version: 8.2.17 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.2.4 + created: "2022-11-09T06:31:35.231874825Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 9cbe656f9c2152afd5ae21477f8b2c8d87d026276d07b0dbeea67424024e0bc0 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.16.tgz + version: 8.2.16 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.2.3 + created: "2022-11-01T15:13:56.744432544Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 4bd7c4cdeb5ca32794f68dc52e8334bd2ed1506d37f0c31400830e94d5d4ec8f + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.15.tgz + version: 8.2.15 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.2.2 + created: "2022-10-25T19:04:21.784768329Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: b7752e4744661161642fa185923cea3a7aefec90b4b69382233f6ae986b199f1 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.14.tgz + version: 8.2.14 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.2.1 + created: "2022-10-24T06:03:48.582731346Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 19cae3471d79fb0a9c0701ee2d4cf13f1dd9198902af55645884599a26f8e6bb + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.13.tgz + version: 8.2.13 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.2.1 + created: "2022-10-21T09:44:22.475127944Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: bda1333d2f73120ba467277d7a4feb56a902e96d98a52db9a4bb6980d4574475 + home: https://github.com/bitnami/charts/tree/main/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.12.tgz + version: 8.2.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.1.7 + created: "2022-10-04T18:12:35.067892254Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f4ee4c55f6bc603a7700913be81e90f6c3d6c73dc6e88b5715fb75d884028ace + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.11.tgz + version: 8.2.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.1.6 + created: "2022-10-04T11:28:46.756849137Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 29cf4b0250e1d23d48c42ef86a0ac7ecc73b61ba0d840a766102c7700d26ef5f + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.10.tgz + version: 8.2.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.1.6 + created: "2022-09-20T18:23:33.894465259Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 0dd918735241e0f2b53e5e4a3acad01290ac160d7a85b052aa338821c015fe2d + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.9.tgz + version: 8.2.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.1.5 + created: "2022-09-13T17:02:00.992594822Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 9b6867ee27665989cec91125e201baaa0abc1be91dac9c723aa5e6b69b98bb98 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.8.tgz + version: 8.2.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.1.4 + created: "2022-09-12T07:49:56.687046744Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 1fbb3293418729c04ede15f22361b2890c603a7473e1dd08db6d59c817f777e1 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.7.tgz + version: 8.2.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.1.3 + created: "2022-09-06T17:32:49.46684158Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 5b638883bf7a61cec08683698e7b77ffc1821080a142081bd08db6426e202d94 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.6.tgz + version: 8.2.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.1.2 + created: "2022-09-02T10:17:42.245778024Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: e304aeff2c3d117b83325cfc11ff7a23226c5de07626275a5507e4f0b67b3d90 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.5.tgz + version: 8.2.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.1.2 + created: "2022-09-02T09:30:38.105577412Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 686e9dcdccf86d5bc7f23c675303e745acdde730c0a0aaaea5b100fc82806932 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.4.tgz + version: 8.2.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.1.2 + created: "2022-08-30T23:40:26.969140029Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f16f35aa209ee907906e749b31083d8e5a12a76a7feb709ee7bd4aa6ce29448e + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.3.tgz + version: 8.2.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.1.1 + created: "2022-08-25T06:26:40.143774738Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: ec59bc3180aaf12883df6c547487567320363601f54666bd5ca6c0672dc18a45 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.2.tgz + version: 8.2.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.7 + created: "2022-08-23T21:59:13.012057142Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 80253ee7a0b68ed29a5bb44eddba93f3ce5a8064be6a480b64854c6d745c9234 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.1.tgz + version: 8.2.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.7 + created: "2022-08-22T13:32:47.386650312Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: b19e3d74170f37b4ece32d56e63939638b17e44fa59768cd865c56f2ec5aa0cd + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.2.0.tgz + version: 8.2.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.7 + created: "2022-08-19T10:43:47.710505263Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 0757f3c101820aa8bfb89e6f6845f609b9dbc940e4777769c4c29fc30de2e745 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.1.1.tgz + version: 8.1.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.7 + created: "2022-08-12T10:29:36.897296575Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: b6fc52ad6fcbad89ce2bcdcf5e5f6fbc2be684d7bfef8f87c33cbd63325a06ab + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.1.0.tgz + version: 8.1.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.7 + created: "2022-08-11T02:29:34.551814757Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 16c7d4f60877e0c67005f6d848c2598397ad0be62d6ccad719c3ef4b327d8a8c + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.11.tgz + version: 8.0.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.6 + created: "2022-08-11T00:06:52.896503186Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: d4398b87be452925cef1d270f4db8ad39aa38e06af765594ecc1532c3a2abefe + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.10.tgz + version: 8.0.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.6 + created: "2022-08-09T13:03:14.016466411Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 7bce0a0e874c29d3236fd91ef315d350132be6511ea425b0649598e6056fc70e + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.9.tgz + version: 8.0.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.6 + created: "2022-08-08T11:42:11.568154735Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: e8e2c6b83c87cffc6a9d3cac716850901946fbe424da6b97e8ee588c6bd32576 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.8.tgz + version: 8.0.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.6 + created: "2022-08-04T18:06:50.522475599Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: df174adb24b4a8748250a9c4d675aa886f840d153ee8f535a622e9cca8e6ae86 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.7.tgz + version: 8.0.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.6 + created: "2022-08-04T08:17:11.427521399Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 84eee87a1302317b8b622ac7989df3c6f7ab129b8004f2a9b5b1be67626f5bd7 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.6.tgz + version: 8.0.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.6 + created: "2022-08-03T17:21:24.212295564Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: f7d155776ceaccf80fc51addf427642473490aeb84f8bf0fc4d54beb9ddede66 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.5.tgz + version: 8.0.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.5 + created: "2022-07-27T20:34:54.374496441Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: eeb366f7be3c94404bbbf745bbcc5b815deb8bf19e03c6fed65b57f726993870 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.4.tgz + version: 8.0.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.4 + created: "2022-07-20T21:58:45.143530593Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 21ce0bc06db48646f0de7f1fdcb9a2a92b2629200a99847f2b60d36794349ddb + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.2.tgz + version: 8.0.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.3 + created: "2022-07-20T02:19:59.83054854Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 558343e347dcadaf18074a3cb81c3a3331fe68564ccb22d77ccbd19aae4bb76f + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.1.tgz + version: 8.0.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 9.0.2 + created: "2022-07-18T15:36:56.220090042Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 14460ed3eb3ba80ed2a68047a1327a2c0d6cbb8376b46dc437b19cd8f4146aaa + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-8.0.0.tgz + version: 8.0.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.6 + created: "2022-07-12T08:08:21.461276993Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: 309b00aa8e71041db074d9efccba93f90800dc0d666e9aae41c63419279cf4f7 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-7.9.11.tgz + version: 7.9.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.6 + created: "2022-07-11T09:37:32.001889302Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: ec65a67e9f726be35d5aab38a8630593b10070fc881022e856bfd24a9315ecfe + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-7.9.10.tgz + version: 7.9.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.6 + created: "2022-06-14T22:23:31.614895549Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: sha256:baa7c6d2535bf758097711d7c188e52f21ffae3b874f9da33b4789c3f737825d + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-7.9.8.tgz + version: 7.9.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.5 + created: "2022-06-10T18:46:23.310334754Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: sha256:fe63a5158c0f9ee55848112e43b2b36a7e4cf698d58f44c186a05bbaaa903bff + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-7.9.7.tgz + version: 7.9.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.5 + created: "2022-06-08T19:08:22.849518347Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: sha256:d8bce9a0b466a9d6d25630e759d32736ca4bbc8bf7bd75006364749f2b6849c0 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-7.9.6.tgz + version: 7.9.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.4 + created: "2022-06-06T21:48:31.522606083Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: sha256:a033bbf161b8794dcd77d9ce237e9cf78a8f2cfee90d0fbab3f3388fafd9f422 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-7.9.5.tgz + version: 7.9.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.4 + created: "2022-06-03T23:48:42.906603377Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: sha256:a8a874cc40149c4b99bf7d687a234e29790d7fd49c69b4fb98a6643bc494a961 + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-7.9.4.tgz + version: 7.9.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.4 + created: "2022-06-01T08:16:03.785517605Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana is an open source metric analytics and visualization suite + for visualizing time series data that supports various types of data sources. + digest: sha256:ab26e62f2b7fbf0626c92b6857a40b6361df4365bbe69e2a2d9a1bdd5ea6e26c + home: https://github.com/bitnami/charts/tree/master/bitnami/grafana + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - analytics + - monitoring + - metrics + - logs + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: grafana + sources: + - https://github.com/bitnami/bitnami-docker-grafana + - https://grafana.com/ + urls: + - https://charts.bitnami.com/bitnami/grafana-7.9.3.tgz + version: 7.9.3 + grafana-loki: + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.1.1-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: promtail + image: docker.io/bitnami/promtail:3.1.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2024-08-08T19:09:46.097186996Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 41dd68b49a2146c0525302e94b4b73be7e6c1a8b7397fd88ea5af8e18b525e0f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.11.tgz + version: 4.6.11 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.1.0-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: promtail + image: docker.io/bitnami/promtail:3.1.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2024-08-07T02:37:23.260521919Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 8fb56fe7dfeb2aa5a3a50e64aba9d755c140711bb3b64fe0d07793e255846cdc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.10.tgz + version: 4.6.10 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.1.0-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + - name: promtail + image: docker.io/bitnami/promtail:3.1.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2024-07-25T04:25:04.434270898Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: a639749c2a3b564db3326a3b140a1fa22204c8326aa02edbac6da161318707eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.9.tgz + version: 4.6.9 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.1.0-debian-12-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: promtail + image: docker.io/bitnami/promtail:3.1.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2024-07-24T06:41:58.237592159Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 2aed1fe5a45aab0e6f3f8b3c23616a919f0823cb442d28360bf381c44ad174f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.8.tgz + version: 4.6.8 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.1.0-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: promtail + image: docker.io/bitnami/promtail:3.1.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2024-07-24T01:31:16.901688886Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: c83ac4f0356db744396beb3fcd79f2cb5195d36d59a9e5af8a8ad57f20635e81 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.7.tgz + version: 4.6.7 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.1.0-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: promtail + image: docker.io/bitnami/promtail:3.1.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2024-07-18T08:48:01.161580665Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 05ebcf719660b135a7e20655f9ed650373916c863796e59f5512685d249f7c14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.6.tgz + version: 4.6.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.1.0-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: promtail + image: docker.io/bitnami/promtail:3.1.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2024-07-04T16:22:31.86375033Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: e4fb429dcb63e635400f7934ff1add6d4a4584c0ea70d92b5afbc7fc5f7ad060 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.5.tgz + version: 4.6.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.1.0-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2024-07-03T02:28:04.063267466Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 926d3e816cbfc68706b1c42801df47a791f4e37adc798f3235b41fcfc0906760 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.4.tgz + version: 4.6.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-24T14:47:49.916888098Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: e33147a86fa885e827597a480ea5887c8be2b11ce433c5363cdf421c1db07fcb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.3.tgz + version: 4.6.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-18T11:59:53.880018352Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 7c92e4162843dd26f91bddf44c4b603bd5b2874dc7f8ba8c21d71a85ff0a4f4e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.2.tgz + version: 4.6.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-10T14:40:06.808905272Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: be842859023210af322c56b1f6bf83f4d262dc971a880ef1f6667dba313a09b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.6.0.tgz + version: 4.6.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-06T15:30:27.930288245Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: ec3a67786a90dc01eb0ae9bb185fca2e4fb5eaa0ad9a35478696cf4f507015dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.5.6.tgz + version: 4.5.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-06T13:01:47.936005999Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 4f4a14f0fff25317b25a2679addae6dc63624186b70d38e70e56eaff30bbf94a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.5.5.tgz + version: 4.5.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-05T14:16:08.673465751Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 4ee8c291ee307dd598fba920f681c1e9c37887ee460705c4656889286859b91a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.5.4.tgz + version: 4.5.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-05T03:56:18.492782575Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 641613d8937d159d1ef93540de0ccfaf4c6bb101becb65ee5a61d53866b84edb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.5.2.tgz + version: 4.5.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-03T23:02:55.641471454Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: cd92acacc1045317e7a0c862e63197f847f2df1370ae8c333d733b0ca447fb74 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.5.1.tgz + version: 4.5.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-03T15:59:53.172430046Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 664d081a71a46e36d0c2a939a61ff1295a0f40c4509c383f6ed705d0f8c5f2fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.5.0.tgz + version: 4.5.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-03T14:08:16.253831159Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 89e1e4eefd106575baacc92306cd569fc1cc6acd9a7f0a21a1f5a8ee2500d124 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.4.0.tgz + version: 4.4.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r5 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-05-29T08:37:17.574642372Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 343893bf6f61fe9e2af51820de0475028bb8254367263ef6aa5303208ed15a98 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.3.0.tgz + version: 4.3.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r5 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-05-23T08:38:54.84663237Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: dc8a27a13667bfcd062e8d816bb552a96c15ac23118b8cc45310f5795ce54369 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.2.1.tgz + version: 4.2.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r5 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-05-21T14:20:36.23379176Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: d2129498982334128bfad1b80cd6939777e8577ca0586ea36e7332735cbce03a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.2.0.tgz + version: 4.2.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r5 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-05-18T01:22:33.267579704Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: c17ba0130027cd24eaec9e6c5a10156541fec25d0cfe2852cc4977531169a03e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.1.1.tgz + version: 4.1.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r5 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-05-16T14:02:59.445790707Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 3cf555a7bde59c9dcb0c9edb8490c2ad92a8036c38c329585ae556928ebf51c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.1.0.tgz + version: 4.1.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r5 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-05-13T22:36:32.018392438Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 7e41d9b1942a96d5093cda0f1b967e6eeae7c21c089b0fc5df6a0fb870701474 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.0.3.tgz + version: 4.0.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r4 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-05-13T16:19:46.863353127Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: db7b06e49c680ca622035b49a7fbc3114b70c2a7fa796f1b59d729c303fe3095 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.0.2.tgz + version: 4.0.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r3 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-05-07T23:48:57.02924785Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: eb5685d1cb54eeb5eaeb03ee3e0eaf40086d8260d6758ccb06ae12674f12e925 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.0.1.tgz + version: 4.0.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:3.0.0-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-04-23T10:43:20.316483728Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 27b38f17d543483387036bedee3db2eb9e9585b04a862057b42b416edd30d3d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-4.0.0.tgz + version: 4.0.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.7-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: promtail + image: docker.io/bitnami/promtail:3.0.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-04-22T10:32:27.085316576Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 0aa14d8a3de26d19116bd1cbab18bf8ca374b0af5e8912e9cc4f3e63e561e571 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-3.2.1.tgz + version: 3.2.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.7-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: promtail + image: docker.io/bitnami/promtail:2.9.7-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-04-11T15:08:44.619008508Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: a9a709efaf6090bb9dab6d7ca3b834ea2f69a54170f668e5162cd75c93eefd46 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-3.2.0.tgz + version: 3.2.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.7-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: promtail + image: docker.io/bitnami/promtail:2.9.7-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-04-10T12:07:01.80997529Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 7b57446794b149feab7e9412a19006bba3cb8c22bc5b2400dc10382288732123 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-3.1.2.tgz + version: 3.1.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.6-debian-12-r3 + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: promtail + image: docker.io/bitnami/promtail:2.9.6-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-04-09T06:49:23.97738705Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 81c72523031c4614fdf2bd22e21eab103fdff2ec166748ab41dfbabec236de7c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-3.1.1.tgz + version: 3.1.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.6-debian-12-r3 + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: promtail + image: docker.io/bitnami/promtail:2.9.6-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-04-08T10:21:06.928960347Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 094d267f62b53fc63d45fce05228f022d40b032c0d2160ec6de13e1a89dba99b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-3.1.0.tgz + version: 3.1.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.6-debian-12-r3 + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: promtail + image: docker.io/bitnami/promtail:2.9.6-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-04-05T18:38:50.659600538Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 721cb0f34b70cb236a9635e66053b573a772a998eeead88e8f5db1a5dc8e0d17 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-3.0.3.tgz + version: 3.0.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.6-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.25-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: promtail + image: docker.io/bitnami/promtail:2.9.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-04-04T18:29:23.670690458Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 3136c84a8d07fc283866b083f9f37cb178cce6cefdbc76fd9c4f02ad217ee049 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-3.0.2.tgz + version: 3.0.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.6-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.25-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: promtail + image: docker.io/bitnami/promtail:2.9.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-03-22T10:24:21.566357534Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: ac8654bfb16b1de52b517e382f4a792b387ed2f10b2a988dcebb0cd8e29510b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-3.0.1.tgz + version: 3.0.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.5-debian-12-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: promtail + image: docker.io/bitnami/promtail:2.9.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-03-19T07:43:53.1950478Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 44343b325513191100b772a1dcdb424d294482f4e6af95e16ef0a95822d13d28 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-3.0.0.tgz + version: 3.0.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.5-debian-12-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: promtail + image: docker.io/bitnami/promtail:2.9.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-03-06T18:51:28.753321105Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 91c70ada278c9e088129a6d4be302f56a2db1274a9a24fd5253dc8acaa38dfb4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.19.1.tgz + version: 2.19.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.5-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: promtail + image: docker.io/bitnami/promtail:2.9.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-03-06T12:08:23.883578145Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: e6687a515a2b44b43324093e2a0863eb02ce68e55a29855025985147eef2997d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.19.0.tgz + version: 2.19.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.5-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: promtail + image: docker.io/bitnami/promtail:2.9.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-02-29T09:06:08.27944997Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 0bcabd8538ffc952578984d34ae14b040fc8f140618c191b667d9c9021fcac31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.18.1.tgz + version: 2.18.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-12-r9 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-26T12:14:00.95670074Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 278e590cde4b2170b0b3604a8ffa674995251fcab90bcf4df68a3f63df508ae8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.18.0.tgz + version: 2.18.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-12-r9 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-22T10:33:46.681987516Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 7a401136b8d27925f52d41d0312595d1f72dbfff9ed6dee8f6db7917e5f59b6a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.17.3.tgz + version: 2.17.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-12-r9 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-21T17:55:27.907956147Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 9b519b8b84193cc9fecc2c5c99646d2126217a28cef6ea7483a4fb0679a5ac48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.17.2.tgz + version: 2.17.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-12-r8 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-21T13:23:30.780440048Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: f4e59bf866f1dd34d88bb4ac1cbaef3cd7a5dc0605f8ea249e468b6a2926f978 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.17.1.tgz + version: 2.17.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-11-r6 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-20T13:33:10.200049715Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 1b775cf14470d2ca585a4e56ecedbe8c30240390d8d8b809744aa74d6d7ed9a2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.17.0.tgz + version: 2.17.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-11-r6 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-12T10:11:09.315970252Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 190dfef9b1743155800286198c0b4c4ceac2a393d0058356ff01e8c13b7f3878 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.15.0.tgz + version: 2.15.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-11-r6 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-07T17:02:10.156949723Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: eff108976c58749c27b7c87f29df957afa382f486333a2c376d9d517ce811766 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.14.7.tgz + version: 2.14.7 + - annotations: + category: Infrastructure + images: | + - m + - e + - m + - c + - a + - c + - h + - e + - d + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-07T11:05:38.14036886Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: bc2ed4b0d59a397797a3a9eedef3f8a4914d1123c4b80bc6291c1f41122aad02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.14.6.tgz + version: 2.14.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-11-r4 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-03T08:11:47.280412276Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 893113b892687f9a686ef2bd4760fc802140d0bd4b0b0c0331bf2158ac349f4c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.14.5.tgz + version: 2.14.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-11-r3 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-01-30T15:32:40.758628739Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 9c684e4651e7015df6a826dc71ef9450cf10a0cbbe2cf421b2aa08875c4e8a80 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.14.4.tgz + version: 2.14.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-01-30T04:29:58.635089669Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 9c5cb3a137c3a7d2bf6f4c191923ffe6da6a7bee166418a887af10c2e228b4d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.14.3.tgz + version: 2.14.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.4-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + - name: promtail + image: docker.io/bitnami/promtail:2.9.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-01-25T12:42:03.13967881Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: fa6526aab410eed197735c55a8ca3627e051cac8c5cfce78a143cc6977cc5cc5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.14.2.tgz + version: 2.14.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.3-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: promtail + image: docker.io/bitnami/promtail:2.9.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-22T16:07:31.877561761Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: f81c793995da1cdbd7fafd64e99e90248204d03e3162067d7fcb5deb9a717de0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.14.0.tgz + version: 2.14.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.3-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: promtail + image: docker.io/bitnami/promtail:2.9.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-18T06:29:42.618375935Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: c5abe3b4d012e084f4b3e5a4f6064908677d755512f917dd9d37ad88e35cd3e4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.13.1.tgz + version: 2.13.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.3-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: promtail + image: docker.io/bitnami/promtail:2.9.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-16T09:45:37.618752803Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 47c01a55f2eb78ee68b74da1bcc42f8b3f18cc28a3b57dc19539df23e12f49bf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.13.0.tgz + version: 2.13.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.3-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: promtail + image: docker.io/bitnami/promtail:2.9.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-15T10:09:49.141884124Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: d35602589d03cf7b5fb60cb120c87d970b63068c899b02c539652f0e0c2d06b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.12.1.tgz + version: 2.12.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.3-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: promtail + image: docker.io/bitnami/promtail:2.9.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-10T16:43:00.089053558Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 958a93077ae9b10df76fee26a9a8d7da74ab2c97ab4e2f5e89a7fb0d7bce04bb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.12.0.tgz + version: 2.12.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.3-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + - name: promtail + image: docker.io/bitnami/promtail:2.9.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-10T13:01:48.235348686Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 8e5bbe608c4405ba974354fa9380a8eabca16708bb000073d79fe9bfc72dcb21 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.21.tgz + version: 2.11.21 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.3-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: promtail + image: docker.io/bitnami/promtail:2.9.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2023-12-14T04:13:20.466384588Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 01f55378f60ec2ac06639a9623fe19999bd2bcc56b1887a406feccf4519f9f40 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.20.tgz + version: 2.11.20 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.2-debian-11-r2 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: promtail + image: docker.io/bitnami/promtail:2.9.2-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-12-11T08:28:28.438351209Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: b27a0915a063b822a4833296e20435d0814eea74691de169fb36bba258dda6f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.19.tgz + version: 2.11.19 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.2-debian-11-r2 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: promtail + image: docker.io/bitnami/promtail:2.9.2-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-12-07T12:36:31.927959628Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: b11ecb56a861eb96691ffd3ac1d46bc07b7a631c0a86dd73b002c810162004d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.18.tgz + version: 2.11.18 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.2-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: promtail + image: docker.io/bitnami/promtail:2.9.2-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-12-05T12:47:10.07547231Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 7af495155ce35e69d47316f2ffad4cf11372432cdeaa8a8c37a3f9170812ac10 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.17.tgz + version: 2.11.17 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.2-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: promtail + image: docker.io/bitnami/promtail:2.9.2-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-11-21T18:31:35.550905144Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 3061f75ae3f710345506895d99bb0e2522848ef82afeb2ede1234f9855f345c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.16.tgz + version: 2.11.16 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.2-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: promtail + image: docker.io/bitnami/promtail:2.9.2-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-11-09T11:02:23.687468168Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 3b84ec0cbdb4341dbda6ac077ca12607acab9696d39b1c7064bb124b11dfe791 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.15.tgz + version: 2.11.15 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.2-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: promtail + image: docker.io/bitnami/promtail:2.9.2-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-11-09T09:31:43.785239818Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 7e2f485b301e870ffd4475756c1aa8e0a457e9c30536dc08e7e76231246c939f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.14.tgz + version: 2.11.14 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.2-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: promtail + image: docker.io/bitnami/promtail:2.9.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-11-09T08:52:50.96230392Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: ce0e343f6ddc21b30ba6a76bbdd617c969bba5f7b71b246261b818899878b9c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.13.tgz + version: 2.11.13 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.2-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: promtail + image: docker.io/bitnami/promtail:2.9.1-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-10-16T17:59:18.810061123Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: c8ece8f4a3546fe25dce56be8ad2a66382f9f64cb3cb4be46a34a1fb3aa879cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.12.tgz + version: 2.11.12 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.1-debian-11-r22 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r107 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: promtail + image: docker.io/bitnami/promtail:2.9.1-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-10-12T15:11:10.860141714Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 0a612ad22f6bf4cf95a417893154609b489df4f3848ada7502b7214602c73a43 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.11.tgz + version: 2.11.11 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.1-debian-11-r22 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r107 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r46 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + - name: promtail + image: docker.io/bitnami/promtail:2.9.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-10-11T05:18:56.468600062Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 7623754d73b695e3497b3b7ce507412d9988ac837ec0b32a04bba79119cbf2b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.10.tgz + version: 2.11.10 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.1-debian-11-r19 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r107 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r46 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + - name: promtail + image: docker.io/bitnami/promtail:2.9.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-10-10T01:49:34.958076801Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: cc446f7b8fa2c350674552d85d6b4686b357306e5c5e2344baa3907765f473a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.9.tgz + version: 2.11.9 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.1-debian-11-r19 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r104 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + - name: promtail + image: docker.io/bitnami/promtail:2.9.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-10-10T00:19:53.870163771Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 9b596087d68c74ad4edeea7cdc678cbf41718c4e6f1b2bdc0f77f9fd7a3b3e64 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.8.tgz + version: 2.11.8 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.1-debian-11-r19 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r104 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + - name: promtail + image: docker.io/bitnami/promtail:2.9.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-10-09T23:00:47.433810608Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: e938ec37cd0a38817eb2f114dfa5fd214a38a159716d7566bdd46672bdfc4bc1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.7.tgz + version: 2.11.7 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.1-debian-11-r19 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r104 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r42 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + - name: promtail + image: docker.io/bitnami/promtail:2.9.1-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-10-03T21:57:00.134918924Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 27dd9948d160d4c41f19a4a43211f10ca36d64077d35ef896cfb2771a62194a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.6.tgz + version: 2.11.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.1-debian-11-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r92 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + - name: promtail + image: docker.io/bitnami/promtail:2.9.0-debian-11-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-09-20T13:59:27.690307212Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: e407c1c1df467c0e7ecf180f4467d1886744a860b558d24705388875ccc86f20 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.5.tgz + version: 2.11.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.1-debian-11-r6 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r92 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + - name: promtail + image: docker.io/bitnami/promtail:2.9.0-debian-11-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-09-20T11:29:14.246749786Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 2b7efb36328ad2e77d5ebafea8a64c3364071fb6277d6178ef83ab90949670bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.4.tgz + version: 2.11.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.9.1-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r86 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r25 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r66 + - name: promtail + image: docker.io/bitnami/promtail:2.9.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-09-20T09:18:03.442421168Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 3edeebce3b29ca908ad522c6efd3a27e446efeb65fbba59c4489f2272de3a5dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.3.tgz + version: 2.11.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.8.4-debian-11-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r61 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + - name: promtail + image: docker.io/bitnami/promtail:2.8.4-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-09-19T10:23:57.959497643Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 9b5223d3e3a84eef5eafd735111ea3dde350495fb85e689859aaf109edfa7c76 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.2.tgz + version: 2.11.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.8.4-debian-11-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r61 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + - name: promtail + image: docker.io/bitnami/promtail:2.8.4-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-09-06T08:04:38.76301327Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: ed0c89458d21a35a75d31a24495650937ed851b5bf59ec7844ce49329523736b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.1.tgz + version: 2.11.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.8.4-debian-11-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r61 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + - name: promtail + image: docker.io/bitnami/promtail:2.8.4-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-08-23T09:52:44.259268145Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: ef9a7c558a32e819aa6554648eeeb661e62afb0b14afc77e84cb42d634e48607 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.11.0.tgz + version: 2.11.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.8.4-debian-11-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r61 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + - name: promtail + image: docker.io/bitnami/promtail:2.8.4-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-08-21T10:51:07.767823247Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 1014621388897157428808d67c819044357bea63f2cc388a0a636b26977f221b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.10.7.tgz + version: 2.10.7 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.8.4-debian-11-r2 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r58 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + - name: promtail + image: docker.io/bitnami/promtail:2.8.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-08-17T17:13:40.226040377Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 8a9bedd7cb72004abf9b36c53783708229167cfc1ae0f4303a0575e5e1374c15 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.10.6.tgz + version: 2.10.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-loki + image: docker.io/bitnami/grafana-loki:2.8.4-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r52 + - name: nginx + image: docker.io/bitnami/nginx:1.25.1-debian-11-r51 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r34 + - name: promtail + image: docker.io/bitnami/promtail:2.8.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-08-12T04:36:20.63167829Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 0747184d1ed78af005b8c3e3bca078ba55f7922f96238a1b2b2405c8f1ea4031 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.10.5.tgz + version: 2.10.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-07-25T14:04:28.77646698Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: d612a229d9c182c23fbdff4dc683708b1f253207d913ebd8b5668b3f4675b0fd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.10.4.tgz + version: 2.10.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-07-22T09:20:34.70734099Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 2568505d42383946b7c6cb3d53f8518af393211e41d65b75e0d0189a99de72b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.10.3.tgz + version: 2.10.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-07-21T18:55:48.75823139Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 96e7252149843b203e0cac4e29166887a1e256c833ed95205d15411c1712b3a1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.10.2.tgz + version: 2.10.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-07-13T14:00:41.558350431Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 627741b24085e2170c6d8e2f2ecd37ab74d78819d5d3c9a5d240043f3393848f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.10.1.tgz + version: 2.10.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-06-27T08:11:00.845986003Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: e1614d262ed2bd5c68f9d6e2528df699b9f651c116b08bbfcc483bb3658a82ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.10.0.tgz + version: 2.10.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-06-20T15:21:17.04996377Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: aea32f8c1ea1e9a5e2522bee962c8fb461c67d66c71c69d29097d9d8e87a7bbf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.9.2.tgz + version: 2.9.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-05-21T15:48:32.276095676Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 0c6078daba79c30cbe1e509d06a0895a1df4ddc68b831be1eac7cde1ae68f93a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-loki + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.9.1.tgz + version: 2.9.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-05-10T06:23:23.973652052Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: de9200a67585db988d305453235a16c846fde43a87c373ceca2ecc64332d26d1 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.8.1.tgz + version: 2.8.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-05-08T14:37:41.945024518Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 1efb4dc6af3cb3fe37da43345db75fd48569d7a8ce49244e21c050bab8eadce7 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.8.0.tgz + version: 2.8.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-05-03T13:39:44.74644995Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 88bdcad04d0b8f8b212e08f262392796317b1705c826c0f7bee4f742e4e7e0bc + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.7.2.tgz + version: 2.7.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-04-24T22:49:35.625396223Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 88e50fa10aa77ec1001e632bf6ed8179c32bc5a5a9288b6da508b2b74c70eef8 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.7.1.tgz + version: 2.7.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-04-14T12:22:55.950745165Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 1249a0fa76cacd2b31fd00431dbb21e2a1dd0ca761f3501cdf7425f5dd928d0c + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.6.3.tgz + version: 2.6.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2023-04-01T13:50:20.631371148Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 65e079c4e5b4e9cdec1bcf82b87bf9c2eb9253cce8eaea3f6643bc4ec3a90898 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.6.2.tgz + version: 2.6.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2023-03-29T07:15:26.129995282Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: e14833f847cdeac294dd4262058e70f13c32da69c4d4b05a0aa687bc0993c9bd + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.6.1.tgz + version: 2.6.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-03-21T16:27:16.90934069Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: f7a2729c2f4b1bc9c0b72dbcedcebeb1d8d6e4ec8b253b3579bf437eb2d7c1a2 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.6.0.tgz + version: 2.6.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-03-18T22:56:50.18231571Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 7444f4fe9832823950b6e49a7ba9932c6dea24b5f9946f105b0ca5ea060c5cd7 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.10.tgz + version: 2.5.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-03-01T10:12:00.31030322Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 409e9df7f7d4348f7ce14af062fd21eae09d6623cca5954628dd0ebd4b97386e + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.9.tgz + version: 2.5.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-02-24T22:28:26.146160369Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: f87840d326304992d79cbe643936156856f2ab8b17d66929acd44b807c8e1d3c + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.8.tgz + version: 2.5.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-02-17T15:41:48.384797907Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: e34efd6da54fd5cc77f68d7a54e777790d1efc34c6f99e9469701fd7752f02ee + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.7.tgz + version: 2.5.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-02-01T17:25:48.005480541Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 133ef04f1c8d9c2f7ad6f45129a6b66487fba241ffbcda1f667d95a18e4b756f + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.6.tgz + version: 2.5.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-02-02T08:22:39.426251875Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: b79f157ce7c429e475317872ba7ff594f6b304071352041bdbc615aec8cdb957 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.5.tgz + version: 2.5.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-01-26T17:59:35.855737645Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: ed0b1ffa5f7ba0bc0abe411669e04ae169f9c40c14697170d4d1f826320f43cc + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.4.tgz + version: 2.5.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-01-09T01:58:30.543513378Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 9004772e87571a288ae595b55e309024ffea9c82af61b356b6496323c6853453 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.3.tgz + version: 2.5.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.7.1 + created: "2022-12-10T01:56:37.021166386Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 9ff440b44e8e4a61dc1a301c6947bfb59a176f3a3834cedde9869d9edfe33660 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.2.tgz + version: 2.5.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.7.0 + created: "2022-11-24T11:28:18.088910355Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 8e494a904feec5bc8a7872a97bab4a75b52a3efe7cadae5badaa80130e224fae + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.1.tgz + version: 2.5.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.7.0 + created: "2022-11-14T11:08:31.245920675Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 82c23eb425e76d5991359ae7478c34488b55618f4d9b834459f6b5be11a8b5f9 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.5.0.tgz + version: 2.5.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-11-09T11:11:47.991393411Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: a3f90ab659be75823e79b85e50f564262fec1ef573abe71e2bdd4de39a07b45d + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.4.9.tgz + version: 2.4.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-10-31T15:20:55.245564459Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 9a7856101429d3a1b02a7d38c12e150d49b91822769f99f3c746da9e338bc4ed + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.4.8.tgz + version: 2.4.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-10-26T07:46:18.970086541Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 51daaf6526b9425168186a7de72f628d365c728f3bca30b6113dbd8a8916394f + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.4.7.tgz + version: 2.4.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-10-24T09:27:56.900713242Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 884b5fe65e3749bc8df7e1e6ff822a0290862e10137b86b46605c80fa7bf39e7 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.4.6.tgz + version: 2.4.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-10-10T10:55:11.907755127Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 35be41cc18b61ec4c7bf1454b686f7656d8fa9a7b9c1888a206cc1245780323e + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.4.5.tgz + version: 2.4.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-10-08T06:50:00.476628513Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: ac711ca28762aae7cb71b3d3a436caf690751e177c3bc12ef381fbd34e67d85d + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.4.4.tgz + version: 2.4.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-10-03T14:45:17.655989471Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: cbefb0baf10d148cdebdcd7830c64b285975952533babb324cf4a900c686084e + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.4.3.tgz + version: 2.4.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-09-23T09:48:49.09153888Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 35e588af7d98d6e8fa4dac69dad4c0c47d5c50e98eb223a7e153dea1672c0ec9 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.4.2.tgz + version: 2.4.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-09-21T12:04:40.526810148Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: d0a600e268d3b7ec48c18881968962edd0324184a1f4a377dfa5ac087005cadc + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.4.1.tgz + version: 2.4.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-09-14T13:07:06.17140026Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 4a4d6f81e84511579ab9ee7cbfb4df3734f0910b7e95e7a5be4699c56c486ec1 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.4.0.tgz + version: 2.4.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-09-08T06:42:24.964862175Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: cb6710a783327bb1f8ce6d6357bc7ef393699d2f7f4fb573e9561392980217b5 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.3.3.tgz + version: 2.3.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-08-23T22:56:51.886412507Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: cca350cb767009115692303637a493ffc831de1e1f797a6b018f51b70e15841c + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.3.2.tgz + version: 2.3.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-08-22T17:15:25.879721846Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 3c1ca4cc09af02792cbd88eb67ec046dd812e3c0c8315add07998dd2969f44c7 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.3.1.tgz + version: 2.3.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-08-22T12:26:12.663753163Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 6fad156856e70e5a0d216facf5db9894659609ae09c1599aea8823192f8df795 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.3.0.tgz + version: 2.3.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-08-09T06:48:40.32644951Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 8af1cb1158332292137c5553fbddf2ecb1125a0d553797a219a01709cdeef909 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.2.8.tgz + version: 2.2.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-08-04T14:51:04.318994358Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: db88c3164992c5a95ce406ce0620b281f4beb2ef54c709f88d5bed0e7dbd0d63 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.2.7.tgz + version: 2.2.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-08-03T08:44:21.286596362Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 6e5252a0bfb0783807ff277ab4dc01ad64970baf16f1c6ad153da677b84e7f31 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.2.6.tgz + version: 2.2.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-07-27T20:07:58.469516099Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: c4c65aa552d7c0f27aeac464294e46e276976da53c46d5544c04cf12cf5304f7 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.2.5.tgz + version: 2.2.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-07-18T14:38:42.388614491Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: df2758975779507b28d622db673685f4213cecf2fcca0d77896b3d3ef3385941 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.2.3.tgz + version: 2.2.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-07-18T10:21:44.82388368Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 443b4468d55a74fedb562be4318615bbe5c74f5a847eb90f0f3abed35618e342 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.2.2.tgz + version: 2.2.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-07-18T07:40:11.761923554Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 3c66824a5b7d44e2eb318f11fbb13ac51c7c9ca73d8898f827dbd5c56299d0d9 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-07-12T14:27:49.817720493Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: eded2881a89be3035edd85a9fe98439738f93ddf055325380abe12e5c0ad90bf + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-07-09T01:49:23.929397839Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 45e1da350f67bde6b0ab8e908924f06feb7fa6b648fa116d501dcdf970a74c26 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.1.7.tgz + version: 2.1.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-07-07T07:55:45.680296199Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: c2b9661e8a77413360f5ef99f2fb444502fc6c893f109d2430210685437fa97e + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.1.6.tgz + version: 2.1.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-07-06T12:28:07.010456755Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: f4ac8acdbe34446bc2cf54f3249a3e0ff421c875a016c227e03a8f92d7e11d14 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.1.5.tgz + version: 2.1.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-06-10T18:58:41.716982714Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 74196c44b12edba500d0a50d96304fa3294a8cb978d233122b964e773e799b9a + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.1.4.tgz + version: 2.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-06-09T10:10:12.973925318Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 3dd00ac8075e00e3c089197ac5e13fffb006f2b45a1d76f11135c30685baec29 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.1.3.tgz + version: 2.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-06-07T14:29:34.844780166Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: 1e035f0b92982e545308e3317ac1c7ce51f25394f134b3a04e5f9cbc0be01c2f + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-06-07T09:04:23.434603831Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: fa295b5e47a7d5ca72fbf17b3b7a91bc66d5f30c5a04835a5cfcf48e453f9b17 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-06-02T10:21:47.238356092Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: c5a864eda44c96a6e4b3e19267bcdf0a39f086576a8a1b39af3661c145e4a117 + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-06-01T08:12:30.906859019Z" + dependencies: + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexqueries + condition: memcachedindexqueries.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindexwrites + condition: memcachedindexwrites.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Loki is a horizontally scalable, highly available, and multi-tenant + log aggregation system. It provides real-time long tailing and full persistence + to object storage. + digest: b1ae8cee0d10d9a6d3534c32a682e9bf8195444d82f2c9bb38c52eec738ea1fd + home: https://github.com/grafana/loki/ + icon: https://bitnami.com/assets/stacks/grafana-loki/img/grafana-loki-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: grafana-loki + sources: + - https://github.com/bitnami/bitnami-docker-grafana-loki + - https://github.com/grafana/loki/ + urls: + - https://charts.bitnami.com/bitnami/grafana-loki-2.0.4.tgz + version: 2.0.4 + grafana-mimir: + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.13.0-debian-12-r4 + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2024-08-07T02:44:39.340710931Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 1972e61f41a2c1d8e27a4d3f03606c9eeea477d6bc5e2af683dc239886ef2d76 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.11.tgz + version: 1.2.11 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.13.0-debian-12-r3 + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2024-07-25T04:43:19.740539659Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: c0e43a1e4882592439ad89ad2fafd97ba196736c4ff16b82e287f6d9aca2fb64 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.10.tgz + version: 1.2.10 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.13.0-debian-12-r2 + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2024-07-24T16:49:48.36081894Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: a68e97ee22584c6cb83f0c8258584999578ebf844007db4eab71993aa604314f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.9.tgz + version: 1.2.9 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.13.0-debian-12-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2024-07-24T07:12:26.352429328Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 1924388af7c351f2a65a6d236da7b650c35ede360154c0715786a57f7ad29e92 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.8.tgz + version: 1.2.8 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.13.0-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2024-07-22T11:27:05.45396755Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 970e7e217188be6bf2b9761f1a5e9af612d9d01a1ba722d395efcded2332f175 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.7.tgz + version: 1.2.7 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.13.0-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2024-07-05T19:03:04.131190726Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 3371b039c1376650b1752e027edc8137f17e7dbede41e2b71bf6d31f5d0b6b70 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.6.tgz + version: 1.2.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r11 + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-07-04T15:16:48.829178885Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 656a03b602f2c4981cdedb5d4cd4808f60bad233f53e6ae716fee65973395a27 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.5.tgz + version: 1.2.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r10 + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-07-03T00:57:13.131889693Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: c720ebdbb0e025afc0c2e89234dff2a4f807d70f54a479b5bb597eaeae970840 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.4.tgz + version: 1.2.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r8 + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-18T12:03:22.212186104Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: fb23f6bd9ac8e54c182553db832ca59493809404c4dc68a85a41a0362dded09c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.3.tgz + version: 1.2.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r8 + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-17T12:29:42.712254696Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: e4ed4967899650cea44d6f713db253715c76bca8077d1cf76a6f66e78b4b5345 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.2.tgz + version: 1.2.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r8 + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-06T16:17:58.119508722Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: e63996b9ce13a22ab86ec175c7175ba5ef3679e91bd54b16742a864c049c5646 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.1.tgz + version: 1.2.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r8 + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-06T14:07:27.295149778Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: e4277c2e2a568cd6d7be00398ee33c4dc60099ebc03f6c45eebea4f7aefbb80e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.2.0.tgz + version: 1.2.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r8 + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-06T13:05:32.545736858Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 3c6d666dd9da3faaab059a52b6bac005fc59908add00dbf88af42dde821703a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.1.5.tgz + version: 1.1.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r8 + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-05T14:15:58.873715168Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 7dce7c406236477c62c5d9e01035a55f719165817996f60de7a2e2dd0bb66d75 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.1.4.tgz + version: 1.1.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r8 + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-05T03:46:32.718395066Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 10999e5190305f6b5a4f122f50f560e598ca37cd3dab282115eeb5f62cd774ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.1.2.tgz + version: 1.1.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-23T08:39:07.304322713Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 8ee531c6bf69e361f2eb38282faaab84a649d8874b21a52a33e8b43a7d7ee671 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.1.1.tgz + version: 1.1.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-21T12:54:49.483873592Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 6ed85a71e691f0c3fa70521a44e5c6e999a969ba92262704a96d8fc731073be0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.1.0.tgz + version: 1.1.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-18T01:27:50.35258566Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 8dc03dc8225eebc09917a809a986b228b24b8f7be1c4f898909fd9adff361f25 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.0.8.tgz + version: 1.0.8 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-17T10:19:12.472581046Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 278e836165c28568b02868e8888c919cd013fcf602688cbb675e0ee6bcf94835 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.0.7.tgz + version: 1.0.7 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-13T22:42:08.142084827Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 3489c17b5a890c0dd024ddb2e7a01f14ee26b80e6cefb12415faca900e9a3f36 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.0.6.tgz + version: 1.0.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r5 + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-08T02:25:52.96886004Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: a5f320ca61a54877e75e2f39316787af6b5fd4179f6528ccafee2890fa7497b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.0.4.tgz + version: 1.0.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r2 + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-06T09:01:37.270327941Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 46319af240b37e53cec0afe0699c871efa2e07f2a2ce06dd22a809cb6b71f603 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.0.3.tgz + version: 1.0.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r2 + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-04-05T23:23:20.858985564Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: f9d42c765007f48d97c7a41394f7aca8eddb4e74fed9caf1d961f09c1e9a4320 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.0.2.tgz + version: 1.0.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.12.0-debian-12-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-04-04T14:09:07.833550606Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: d65d0a3e3efd45efd2d5f69e1c1cda84b07ec25a046f3eefd6ada85765d3be11 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-12-r13 + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-03-18T15:50:55.185564784Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: d4af529a34693d9c610ce053cb1067c63ad1f310dde31a7a24e268463a01b3be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-12-r13 + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-03-06T23:58:54.982153939Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 7353a3b369e1b323aeba37bad334e40543c3cc94fb6a30421415f96ea82e6379 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.14.1.tgz + version: 0.14.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-12-r12 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-03-06T09:36:31.26671218Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: c8c0365eacc0f3ca34fe74903eadf3456b08e1b5f8e79da32f4506f40ffd907b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.14.0.tgz + version: 0.14.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-12-r12 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-02-27T11:02:01.900004996Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 1acd2ce2846aefe5b6fed04991b499ea9c6409b5f1c4963026d1e03ee5bb5248 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.13.0.tgz + version: 0.13.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-12-r12 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-02-21T17:52:50.05959577Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: a91199bec1a636f7c1a59fe284ed11afc2cba0b89fb86bd0ee8e9dbe729939bb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.12.2.tgz + version: 0.12.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-12-r11 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-02-21T13:11:14.630767505Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: a46fb0b1b3e9edbda7ebffb83d443eafdbc00daebba97f000c5fca097f837a11 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.12.1.tgz + version: 0.12.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r9 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-02-20T13:33:04.585687992Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: ac15ca04c0717e913506317d187535fe4c5ffcfbd2ae9a05e6629f3ed7923d69 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.12.0.tgz + version: 0.12.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r9 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-02-09T09:36:23.439445311Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 7df804f748656c1f69a723734ccefd4f785133871e5a88bc7f4f46b1cce15dca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.10.0.tgz + version: 0.10.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r9 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-02-07T17:00:57.745094454Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: c37d464cb39cca4d07064624c3b0893cfa5e80e2ea09b430b58754f623f05b7e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.9.9.tgz + version: 0.9.9 + - annotations: + category: Infrastructure + images: | + - m + - e + - m + - c + - a + - c + - h + - e + - d + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-02-07T11:04:48.627295549Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 02a269d60e354d05a85c7524cef47327ab70e1a0c9d0465c08359dcab083fe0f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.9.8.tgz + version: 0.9.8 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-02-05T12:24:17.776406237Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 86e7f6828d5a7251ff947a93dd770dbd79b52cdb59541896dc6d19f79bc28428 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.9.7.tgz + version: 0.9.7 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r7 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-02-02T16:25:59.328784563Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: d920e800131aca8462a061461900eda34f597ca1e8ffa98066108138e1649d36 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.9.6.tgz + version: 0.9.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r6 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-30T18:33:24.727838777Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 07f06b67b90e4f18c5f803eeee6ffabff57c8bd7caa1c345833e5b034eaa1401 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.9.5.tgz + version: 0.9.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r5 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-30T08:32:51.675669074Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 954ddb0a2b1041df51f19f45c8cdb72eaf3f4eb15050439f312268ca41f4a35d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.9.4.tgz + version: 0.9.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r4 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-30T04:38:39.591170907Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 2bf86b3810960f60d6fc62002ce412d5df787636d3bcfa33aca240f618b0ea06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.9.3.tgz + version: 0.9.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r3 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-27T17:43:23.641636891Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 2bc3206e712662643cfda216527f681f6d83b1a41320c3cd033d0e19a34f4e09 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.9.2.tgz + version: 0.9.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-19T09:29:59.199375735Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: f76c66d76a9e4c1707dcdc357f931ea18bc4c4b88d53b73ac053370e8e5cda0e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.9.0.tgz + version: 0.9.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-18T06:28:12.775790954Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: c3af30622b729972e02537fd9af63e9b95b881eb5eec3c78d5aed4aae97abc8b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.8.1.tgz + version: 0.8.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-16T14:53:42.836733808Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 269ad01a435b0625280f441c7008b698f9cbac7ec95bfe251a212db04af062d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.8.0.tgz + version: 0.8.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-15T08:36:02.906247397Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 3e7b6684e7b2cdb4127436bc52f527415b237c0c375e264c4d126218deb2b351 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.12.tgz + version: 0.7.12 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-12T09:04:55.266924612Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: fab80928c1efff4f11c87b71f65674f9db80e13c009862645e45c37478f1e418 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.11.tgz + version: 0.7.11 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-10T14:31:56.966189257Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: cd6cfc18ae07fa7131efcf924db1a7cc9ed9063f6b6584aafe8dfea25c6bd42d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.10.tgz + version: 0.7.10 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.11.0-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-01-03T13:57:15.127000428Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 96d28425e2477bb8c69c5e76ba0363cefe5a6b55bf49af6cd1f5972960bad1f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.9.tgz + version: 0.7.9 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.5-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.5 + created: "2023-12-12T17:35:21.43429724Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 6783d9a8ee96333fe077157d6b4acaf4f84c396ca5a6abafdf817bb5fdd7cc28 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.8.tgz + version: 0.7.8 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.4-debian-11-r2 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.4 + created: "2023-12-07T12:05:17.677766482Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 4c7df3d863cb20ac8eb429ca7d8c15f975451dd706ed531b5dd8a94378780064 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.7.tgz + version: 0.7.7 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.4-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.4 + created: "2023-11-25T11:01:58.301333402Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: b7e1ffb67d821b5975e8152a5e187b37f7bf77c1629d9c68e452c321d8b55b30 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.6.tgz + version: 0.7.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.3-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.4 + created: "2023-11-23T17:59:49.820137577Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: b5d95c19d4edd39edfbd0ebd19cb6770d47da17fd9480fc8ed14345b41407dcd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.5.tgz + version: 0.7.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.3-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.3 + created: "2023-11-21T18:30:37.013626054Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: f1203d90a8670ad00d06bb7adff620cb5a9011e75dff5257d8219e0260c3a8a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.4.tgz + version: 0.7.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.3-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.3 + created: "2023-11-09T11:05:40.598688289Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 15fbd49a1e5af524e00a2d6ffe1c094f3b25d98e4ae9b024ae39d9051480777b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.3.tgz + version: 0.7.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.3-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.3 + created: "2023-11-09T09:29:23.650256763Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 1b89f0c4b927ac9620220050ceb62bc1692d23a2d7c1852036c2bab38f1346a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.2.tgz + version: 0.7.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.3-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.3 + created: "2023-11-09T08:55:39.412286767Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 2a7bda7f214e23d78438184e4cfe6fe2ac9416f07c36dbe814f533c1ee9a3a60 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.1.tgz + version: 0.7.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.3-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.3 + created: "2023-10-31T14:43:28.662697163Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: c748a5baf01f952c5235bc20493189fdfcd9ef8ac6d816eb6ddd904bb83bfdee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.7.0.tgz + version: 0.7.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.3-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.3 + created: "2023-10-18T23:47:53.602306046Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 0ad97460b1e9eba036c2416f2f0c9043cf998bc1234b3cc4bc888fc376b996f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.11.tgz + version: 0.6.11 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.2-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r107 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2023-10-16T10:37:39.166958267Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 03162af2ac55fb1ed211f2697d644ffa970a605ec45fd39f6c86cdcb6b013201 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.10.tgz + version: 0.6.10 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.2-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r107 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2023-10-13T12:06:28.423622494Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 0129bac343b89777c56287891e05bea48e3df858e798452e617338657d7027f0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.9.tgz + version: 0.6.9 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.1-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r107 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2023-10-12T15:39:52.430417013Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 459d86a1950f88618fbad5684608457c22cad30b4a708f192e336214280a77c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.8.tgz + version: 0.6.8 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.0-debian-11-r14 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r104 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-10-09T23:49:12.427520941Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 0afe0f540ef0c4da86c27dc6afd519867c34147fd564eb8bb56462a8c72468d9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.7.tgz + version: 0.6.7 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.0-debian-11-r14 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r104 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r42 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-10-03T22:30:44.148204207Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 2a8f56ee4d58d3511726f09f52956dea610c29f31126c66a690f2aa93af83fa9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.6.tgz + version: 0.6.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.0-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r89 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r69 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-09-20T12:53:35.390839966Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 4a849dbcfecfceeb6a9001946427776bf09dc670ea31b826a1fc97d58c25e08c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.5.tgz + version: 0.6.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.10.0-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r89 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r69 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-09-18T17:39:17.551739001Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 72be7cd22f42a34daf01d19e026204da7899ece3b23f8bf4447470dd61192cfd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.4.tgz + version: 0.6.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.9.1-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r86 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r25 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r66 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-09-14T20:29:32.742404131Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 5e50ac5a402d5c04bd9cd862bdeaae9709f02a27acd31f7dcbcf9bc27342627c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.3.tgz + version: 0.6.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.9.0-debian-11-r72 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r76 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-09-08T08:36:07.235262559Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 3e557eb04c59a29c8d8f224d053620dc0dca77e0fa4c5eba317e5aee8dbd2210 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.2.tgz + version: 0.6.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.9.0-debian-11-r72 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r76 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-09-06T17:16:39.80552239Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 961a7f28861d77c1d68fd620b6185d013cfb211ad1a77e4e2e83bb41c33482b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.1.tgz + version: 0.6.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.9.0-debian-11-r58 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r61 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-08-28T11:26:48.594764197Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: b3e5406370ce2c5e5836c89d704db9e1a3fdc8b0036db936065c9272be2c8b27 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.6.0.tgz + version: 0.6.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.9.0-debian-11-r58 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r61 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-08-19T17:24:23.282003694Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 44f856e6461549db01257dd16072854a5c67b85ab7350eaee6fc911504ebd955 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.5.8.tgz + version: 0.5.8 + - annotations: + category: Infrastructure + images: | + - name: grafana-mimir + image: docker.io/bitnami/grafana-mimir:2.9.0-debian-11-r54 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r58 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-08-17T17:16:00.720258908Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 70bd86b0dac9eda3f50cf4249091d96fc421258cb5d9a2516b20c2251cac7672 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.5.7.tgz + version: 0.5.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-07-25T14:12:22.324428869Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 9a5639f7545706b061d7d7eafc65edeb6d0dc998fc1d484ea81e3b65054afa6d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.5.6.tgz + version: 0.5.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-07-21T14:30:56.204610742Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 02edcd1442bab6d96c531470f06a391d22f85bcf998c0fdc0c170fed3be5ee8c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.5.5.tgz + version: 0.5.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-07-06T11:21:56.619119169Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 57ce1552671a08eccf1deb1f9edb054c3578970ff1a68ca37337b529aab74163 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.5.4.tgz + version: 0.5.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-06-30T12:51:32.853153479Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 0b733cbb53155bd33534a2d97fb65329f64eb44849710dc78896c56a35ee1783 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.5.3.tgz + version: 0.5.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-06-20T11:08:14.42601869Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 42cba6d7b56cfe98bdda1ab084b737af6d600f4844cd786da68bb69c7f710d4f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.5.2.tgz + version: 0.5.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-05-21T15:38:32.139834522Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 42f28f99f04b398dc525efb210c823e8e9e595dd232dfc1657d24e5d8e121aab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.5.1.tgz + version: 0.5.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-05-09T12:52:26.330079637Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 766973430e0e362d2af9593426d645825624eeec9187f7c4c8c260c38acd1376 + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.4.4.tgz + version: 0.4.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-05-03T16:12:26.294618757Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 956f35e3172a13be5eb19e99e30b447a58867d7087a4efdda9b43947d4dc9862 + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.4.3.tgz + version: 0.4.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-05-03T14:02:50.942715544Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: b446870cbfa2be94a54981fde86d818424b82888744a20ed1552914641918727 + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.4.2.tgz + version: 0.4.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-04-25T13:32:13.878137839Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 6c3a3592babe2f6c37398c7fb17855a97039c19908545466b69c350f67a030de + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.4.1.tgz + version: 0.4.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-04-20T20:11:25.294697511Z" + dependencies: + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 460eead365003c2918e54e60e3e5f13160bd39108febb48c133609f56485561f + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.3.1.tgz + version: 0.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-04-01T13:44:06.127171334Z" + dependencies: + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 0db24a950ff7b9d4240f8ca7cc88f471c7a5a397328159c3f7f58848d163b578 + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.2.3.tgz + version: 0.2.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-03-18T23:00:28.694168376Z" + dependencies: + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: d6b1b38fac219a587f969eb3a5c3ca0411b8df3f47a4e2f320e529fa40de3552 + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.2.2.tgz + version: 0.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-03-15T10:57:31.615396853Z" + dependencies: + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: e7d1c958d56e5cf01b50e59737fcc9db8f0208f1ef923ac8d9aaea7043e0442b + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.2.1.tgz + version: 0.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-03-10T12:08:25.561603387Z" + dependencies: + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: f654cd4f01f9d439d421f70668a6b22c5cce964ef994d5318c56274346e3143d + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.2.0.tgz + version: 0.2.0 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-03-10T07:42:27.350371229Z" + dependencies: + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: e84ee178ffe566278b391d9b463fa81795406bae2f7d34b1c629d03209708b5b + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.1.3.tgz + version: 0.1.3 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 2.6.0 + created: "2023-03-01T11:50:40.424063057Z" + dependencies: + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: ae631f1d483537069a790ed7761f75af7bee4040fd53513e912c6150502674d6 + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.1.2.tgz + version: 0.1.2 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 2.6.0 + created: "2023-02-24T13:51:12.374849615Z" + dependencies: + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: bbe4f72db2ff82fabf544a3b7cab54dcfdf482eeba973fc8691b942e56707c65 + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.1.1.tgz + version: 0.1.1 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2023-02-23T17:30:04.506137202Z" + dependencies: + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - alias: memcachedmetadata + condition: memcachedmetadata.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedindex + condition: memcachedindex.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedfrontend + condition: memcachedfrontend.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - alias: memcachedchunks + condition: memcachedchunks.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Mimir is an open source, horizontally scalable, highly available, + multi-tenant, long-term storage for Prometheus. + digest: 3922897952460dc3138390e41b0b18d06409eddebf408c26ba682411eb30b823 + home: https://grafana.com/oss/mimir/ + icon: https://bitnami.com/assets/stacks/grafana-mimir/img/grafana-mimir-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-mimir + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir + - https://github.com/grafana/mimir + urls: + - https://charts.bitnami.com/bitnami/grafana-mimir-0.1.0.tgz + version: 0.1.0 + grafana-operator: + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.3-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.12.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.12.0 + created: "2024-08-12T10:12:24.186575162Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 8330855dc2c9fd1fbeabf7c328953f41852a279eddbcddc571f45ee061fd51ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.5.0.tgz + version: 4.5.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.3-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.12.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.12.0 + created: "2024-08-08T09:09:42.065535754Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 3e067fc869970fc3717149829556deedcee6f00c3b0f1e411bc659c7870a28a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.15.tgz + version: 4.4.15 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.3-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.11.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.11.0 + created: "2024-08-07T02:56:36.406298413Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 26ea8a43c2cc1fab5b862759b9d929dcad85b2ac19a992d17554295768028f74 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.14.tgz + version: 4.4.14 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.2-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.11.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.11.0 + created: "2024-07-30T17:02:44.464693974Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 6ae9fa922c9fb284177936699ef20168db69ed77f7ebbf84672254d33759fc5d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.13.tgz + version: 4.4.13 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.0-debian-12-r5 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.10.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.10.0 + created: "2024-07-25T06:35:35.161706086Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 32449dd23cc4332d3374807d63a75dd39596e78ae630ec8b921606bf53cb8666 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.12.tgz + version: 4.4.12 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.0-debian-12-r4 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.10.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.10.0 + created: "2024-07-24T06:20:41.213353052Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: c70a5fe64e2d554f906a9d4792a8c926f4e82ca55659ba34c4b94d01d7628497 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.11.tgz + version: 4.4.11 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.0-debian-12-r2 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.10.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.10.0 + created: "2024-07-04T19:20:47.407241209Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 4607860fa24f016424b805634008c3971b9389b40b1a8f77e366a639c3122825 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.10.tgz + version: 4.4.10 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.1.0-debian-12-r1 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.2 + created: "2024-07-03T02:01:42.719343214Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 72d1035a7bdd50e9314aa03168f388652037e7e9b6cc28d787687d9a3c65e208 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.9.tgz + version: 4.4.9 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r1 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.2-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.2 + created: "2024-06-18T12:01:13.690849519Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 30b4930e7de6ecbdc32c3d18006bce9c9ab2f6a546a6186d4df049588734db89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.8.tgz + version: 4.4.8 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r1 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.2-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.2 + created: "2024-06-17T12:32:44.289697992Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: fea55b9699db090bf5b766a3b6d85f51501589ee24b683300cb49d78df4ae0df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.7.tgz + version: 4.4.7 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r1 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.2-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.2 + created: "2024-06-13T09:16:30.070582209Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 9563ed613779e372ca82e38f2ad1475e619704ea8f852f8b29216917e3c51304 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.6.tgz + version: 4.4.6 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r1 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.2 + created: "2024-06-06T15:37:58.881484286Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 4316994e61b050138f77d84586491d67a7dcc7b7bc43fab8d6f4b72b1f5f125e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.5.tgz + version: 4.4.5 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r1 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.2 + created: "2024-06-05T15:15:11.34711293Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 94b805ae45d0ae9c70212dededc06190a7c117e07a2c404a2a8408af481e4aac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.4.tgz + version: 4.4.4 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r1 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.2-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.2 + created: "2024-06-05T03:13:55.369222788Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 1d55ed40b6a22b28e76eb687620c0fc76d25409bfc3c1867e308de40ad8dc8e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.3.tgz + version: 4.4.3 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.2 + created: "2024-06-04T17:32:35.52582941Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 7d38745aa86dede5749cc0267938afd10571ea21dd365262de26c73804f6718a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.2.tgz + version: 4.4.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.1 + created: "2024-06-04T09:44:39.601391561Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: b5deff810ed11883fb3cf00756415389d5c58cf81c30ae0a24e2255dd50be853 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.1.tgz + version: 4.4.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.1 + created: "2024-05-29T09:55:15.213802602Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: c1be90a4fe80d931ff8a7a804aeecf145d4d5aacaadff3b5c96470cb31b764ca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.4.0.tgz + version: 4.4.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.1 + created: "2024-05-26T21:08:36.162437456Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 845c70cad30e948bd25e8dc58e97a740fdd18c54ce39be67e029da8c5aab4fc0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.3.2.tgz + version: 4.3.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.0 + created: "2024-05-24T07:56:23.995781837Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 83ac28e0c36bc2b4e288fe1424e35390d087e5f1446378e4bc9fc9882c833a1a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.3.1.tgz + version: 4.3.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.0 + created: "2024-05-21T14:18:06.928846692Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 9fe595e0b5ecf7ab871046f62d50c7cc3b36e14e500a02143853ea1d40ce3049 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.3.0.tgz + version: 4.3.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:11.0.0-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.0 + created: "2024-05-20T18:49:28.313191872Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: eec78242333a89ba43f39a659a140c3708ea8126a4d73b63ad32aa3b56a69159 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.2.5.tgz + version: 4.2.5 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.3-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.0 + created: "2024-05-18T01:26:41.883464354Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 06f07348a560c4c3a8a10ae4c0f450cff81f5f4cb27167d8fffa28f77c7ca7c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.2.4.tgz + version: 4.2.4 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.2-debian-12-r6 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.0 + created: "2024-05-14T00:29:07.816518864Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: e4a2054d77997e624c754a8926ed99229d297a594ae73c5655484b41278f12ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.2.3.tgz + version: 4.2.3 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.2-debian-12-r5 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.0 + created: "2024-05-13T07:22:25.745229086Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 3f2777d172f6f7027ee438885eda14c85849eb4c4ac835c5c0be045ecdf306d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.2.2.tgz + version: 4.2.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.2-debian-12-r5 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.0 + created: "2024-05-07T23:32:25.361832542Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 3fe2ab5e7d5180d215fb4a4e978f6e6c4f8ecb74ef455a37c34126d2c851f4a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.2.1.tgz + version: 4.2.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.2-debian-12-r3 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.0 + created: "2024-05-06T13:47:21.369246321Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 84564d6c2f4d3800eaa826329f04bad265ccebf8631b3671992d4cd10904a4bc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.2.0.tgz + version: 4.2.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.2-debian-12-r3 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.9.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.9.0 + created: "2024-05-01T13:25:49.376085422Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 11bba9d5174b9f2d75717e0781d7f368f5a7d53c5ffab785dcdeb811b25c0063 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.1.1.tgz + version: 4.1.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.1-debian-12-r2 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.8.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.8.1 + created: "2024-04-18T08:15:21.632357217Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: a71fd87742e204e666c4977c92186c23b869ea71cf266ab6c30cc8a216eb14f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.1.0.tgz + version: 4.1.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.1-debian-12-r2 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.8.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.8.1 + created: "2024-04-15T13:05:10.696589427Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: b235443cd658940bdb38884ab7aedfff6697a6622a913711f333cd6d1ff7c91e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.0.4.tgz + version: 4.0.4 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.1-debian-12-r2 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.8.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.8.1 + created: "2024-04-05T16:35:12.334456427Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 8d1256ef73ae3a2e8031d97a93fd45380691ebc8bcb3ac022ddb22cee21d8560 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.0.3.tgz + version: 4.0.3 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.1-debian-12-r2 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.8.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.8.1 + created: "2024-04-05T09:54:27.447326266Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 42d2c0decfaf96241d3e7b0a014ba9d4a6050467324083441088b9233788e924 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.0.2.tgz + version: 4.0.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.1-debian-12-r2 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.8.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.8.0 + created: "2024-04-04T14:16:14.115547671Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: e23061c1a8bea8328f57734f00114deb4495bdda0a9b48466aee6bfa69706863 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.0.1.tgz + version: 4.0.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.0-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.8.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.8.0 + created: "2024-04-01T11:17:13.041625902Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 99e5843cca2e17ce653342d13633d61d3670e6e64b747d93a4d742c3fe41e332 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-4.0.0.tgz + version: 4.0.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.4.0-debian-12-r0 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.8.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.8.0 + created: "2024-03-19T16:30:19.76382833Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 4402e991a5cae6ad38a5cdbc13f6d4370ed527cbfdd106b2e3bdea0b604d7580 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.12.3.tgz + version: 3.12.3 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r5 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.7.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.7.0 + created: "2024-03-15T11:31:09.297783921Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 4ae44bd263636008efeb501f9b171662dda9b70ff2c3a6a3bd3c517e0d2501cf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.12.2.tgz + version: 3.12.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r5 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.7.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.7.0 + created: "2024-03-13T13:32:58.836803533Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 21fdac502b0452a87251980dfa5fd8898c9ff9d64e399e458c8a3cffa85c4c73 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.12.1.tgz + version: 3.12.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r4 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.3-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.3 + created: "2024-03-11T15:28:13.922260329Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: c62bd9d0f942c9ef79ee2f431f43a0d918f9a2fed27391a927d31133fc4a4af3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.12.0.tgz + version: 3.12.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r4 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.3-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.3 + created: "2024-03-06T19:00:50.170312438Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: a27567b8398125acdc3c997b42d4f12e0a7fc67d4ebb8664c734a997e216dad7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.11.1.tgz + version: 3.11.1 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r3 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.3-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.3 + created: "2024-03-06T10:52:55.510679977Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 0646abdb06ee8b7acfda395877e8265ab51604be98d3dad0cb6e40d4c0d5c239 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.11.0.tgz + version: 3.11.0 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r3 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.3-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.3 + created: "2024-02-21T17:47:56.590073221Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: e1a2e272cae36fd59a3c67152cbf82aca86a3eddab3fbf538308663a9f5ae0b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.10.2.tgz + version: 3.10.2 + - annotations: + category: Analytics + images: | + - name: grafana + image: docker.io/bitnami/grafana:10.3.3-debian-12-r2 + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.3-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.3 + created: "2024-02-21T13:03:58.863025506Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 02387e59434da0e59ea7b902f6aac1274b536795df08a2bbc9f6e1ba68905bee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.10.1.tgz + version: 3.10.1 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.3-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.3 + created: "2024-02-16T10:06:28.098398223Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: dd61fcc8d422baec47a131b232fd8828a2ac048da5df033752f722c84c9e0275 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.9.0.tgz + version: 3.9.0 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.3-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.3 + created: "2024-02-11T15:39:56.555012042Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 8c8025fb12c73f8e33372104f443dad5308f96a51c35670b8aa3a2155ed9614a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.8.4.tgz + version: 3.8.4 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.2-debian-11-r1 + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.2 + created: "2024-02-09T16:50:35.57958864Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 0838147ad5183013277c11ce4fe27f7927b4c097ce2d97ea593b5832651a5170 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.8.3.tgz + version: 3.8.3 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.2-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.2 + created: "2024-02-08T03:25:24.789946612Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 603cf89f99ffc70278495679ba8758fc9aee99581b16ca92cdce8f12dc969006 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.8.2.tgz + version: 3.8.2 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.1-debian-11-r5 + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.1 + created: "2024-02-07T17:00:47.91860671Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 318d31251b83cd503fe6ee7f302c1287281d8b303cdde9101dc1a7d63d5189b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.8.1.tgz + version: 3.8.1 + - annotations: + category: Analytics + images: | + - g + - r + - a + - f + - a + - n + - a + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.1 + created: "2024-02-07T11:18:05.253873335Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 09fa156f66a0301a649da92631fe7d4632485f9807e1a736b1f5752eef7bd240 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.8.0.tgz + version: 3.8.0 + - annotations: + category: Analytics + images: | + - g + - r + - a + - f + - a + - n + - a + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.1 + created: "2024-02-07T11:04:06.177533875Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: ae97fc4ae89b609e9abf8b0970377c03a01a5edd143d1327575eec2139f41f82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.7.4.tgz + version: 3.7.4 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.1-debian-11-r3 + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.1 + created: "2024-02-02T16:28:18.638616461Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 43fc5ca3bb01e778478d45a27e463c1668bef1df121046f81daaa5905e56bc82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.7.3.tgz + version: 3.7.3 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.1-debian-11-r2 + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.1 + created: "2024-02-01T05:14:38.797872049Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 03e2ce2690947a9b5dbda414372f569877829f31a985a65b6c0bb37434a90c91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.7.2.tgz + version: 3.7.2 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.1-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.3.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.1 + created: "2024-01-25T12:41:37.013308246Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: f4255596e56b06dfdd14aa56b066c36823f88856c5893e75324766298d4b1f5c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.7.1.tgz + version: 3.7.1 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.0-debian-11-r2 + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.0 + created: "2024-01-22T10:52:18.087489104Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: de0846d70afca608ccc2f7ed654cd4f757b72add8cf975e29e10c913c341577e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.7.0.tgz + version: 3.7.0 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.0-debian-11-r2 + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.0 + created: "2024-01-18T12:34:14.078670289Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 46a03e75f1ba146c85e0c7427d495e7225f9c47a75f228c29e61e445a9002fb5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.6.1.tgz + version: 3.6.1 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.0-debian-11-r2 + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.0 + created: "2024-01-16T09:42:57.212158869Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: b8e73c3d96ac4c5fa08d813aba996ed02315df56509c6ce028d29f179aefac0f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.6.0.tgz + version: 3.6.0 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.0-debian-11-r2 + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.0 + created: "2024-01-10T15:30:29.474432776Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 0236cbeb49c63579e14253e1508c89653389111e54ef7109604ddc63bfb9cc08 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.14.tgz + version: 3.5.14 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.0-debian-11-r1 + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.0 + created: "2024-01-09T18:33:32.556044789Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 504183815e0ab09c067a376580c6860d8f8028d4052e49ff38ed71f0232a77cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.13.tgz + version: 3.5.13 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.0-debian-11-r1 + - name: grafana + image: docker.io/bitnami/grafana:10.2.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.0 + created: "2024-01-03T08:34:47.391030826Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 56a1fde99155233f458bfb4ae613d94becb0ef25c8477b8b5132584cc68b49c2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.12.tgz + version: 3.5.12 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.6.0-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.2.2-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.6.0 + created: "2023-12-11T18:18:08.529848873Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 89c71ff019787ecdc6a66eb6373e28ccc7cc93d89d90eec28a1beb08661814b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.11.tgz + version: 3.5.11 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.5.2-debian-11-r1 + - name: grafana + image: docker.io/bitnami/grafana:10.2.2-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.5.2 + created: "2023-12-06T20:32:01.393703517Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: c80d42bf1cb791d342801124aeb5af111991b62979b9574e42d722035687ba89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.10.tgz + version: 3.5.10 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.5.2-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.2.2-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.5.2 + created: "2023-11-28T18:20:27.727874262Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: c7beaee86570b4a39d22318c5ca1a4ef8bfb31fac30c57344d527182f4dc0d3f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.9.tgz + version: 3.5.9 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.5.1-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.2.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.5.1 + created: "2023-11-23T22:28:50.833329802Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: a920cfca393b607728e6d583aa9e07a474e986b58ff467c9326856c3f8176e7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.8.tgz + version: 3.5.8 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.5.0-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.5.0 + created: "2023-11-22T00:20:25.411952118Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 6dff97e317fe35da2072daac2af1ebce3db6b73e5f52eadb4c59aa139bd7a2d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.7.tgz + version: 3.5.7 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.2-debian-11-r1 + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.2 + created: "2023-11-17T11:51:09.567953662Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: c0b8b07cb81e08e5426bbc57d1d02b514db463be0715e58928998e59d7be7be8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.6.tgz + version: 3.5.6 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.2-debian-11-r1 + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.2 + created: "2023-11-14T13:56:35.461424375Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 54172147bd5be874355577c432fa4609f045fcb459105ab32faa1e43e9dcf56c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.5.tgz + version: 3.5.5 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.2-debian-11-r1 + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.2 + created: "2023-11-09T11:05:09.810695208Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: a6f8308dc8c35e3ad2200c6cad01031d8d5799b328cdd4cbd93c298134cb0b0b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.4.tgz + version: 3.5.4 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.2-debian-11-r1 + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.2 + created: "2023-11-09T08:49:07.033403763Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 4ddeee93de0ddc1fc160da9ffda6917c01d7bff1a4859b4f92ae07ac7dda4a7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.3.tgz + version: 3.5.3 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.2-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.2 + created: "2023-11-08T17:00:09.258572722Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: c84446bdd7016bfe5c66affc8f81de48f8e448065418c3f70ba46ba509a4ca1e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.2.tgz + version: 3.5.2 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.2-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.2.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.2 + created: "2023-11-06T14:58:50.371456991Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 4d3371dc929b010cb12576111604e21c6b5c16dc5681791c12eb59363a1a8b01 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.1.tgz + version: 3.5.1 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.1-debian-11-r24 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.1 + created: "2023-10-31T14:42:59.881172111Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 9fe4fdd88b60b5040e909ac0ed1b7537e7d007548058e55736f6b1e81c540f13 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.5.0.tgz + version: 3.5.0 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.1-debian-11-r24 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.1 + created: "2023-10-25T08:40:41.893389789Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 5d3f4215fe043bbd21bd98de3cc1b5d786bd147eaaddb2c876b2ae4a97069327 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.11.tgz + version: 3.4.11 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.1-debian-11-r24 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.1 + created: "2023-10-12T15:10:27.117442569Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 10cdd59849e4ce614e3943fdb24277ef3f8e91c82ed9a1ed81b0d03eb131f059 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.10.tgz + version: 3.4.10 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.1-debian-11-r24 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.1 + created: "2023-10-11T05:18:51.013827763Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: f95725d101e7013eef789ae9e4b22478ed58dcbf6efc9b5094334a69a04f4330 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.9.tgz + version: 3.4.9 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.1-debian-11-r22 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.1 + created: "2023-10-09T18:08:45.751436234Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 12ec26f8da3c4175f4cb0ea2edb78e9c6dc5e41ae4565cf556fe715438543b52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.8.tgz + version: 3.4.8 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.1-debian-11-r20 + - name: grafana + image: docker.io/bitnami/grafana:10.1.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.1 + created: "2023-10-03T22:24:10.960546101Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 552a64ca2af8748905ce97625798e02f0241db3b509bc6235d1434baab88766e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.7.tgz + version: 3.4.7 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.1-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.1.1-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.1 + created: "2023-09-20T15:48:19.660575029Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: c22cca0b4eb4ee5debce7cda655ad683387f1672b7c13aeec3e2f10b05ca6f4d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.6.tgz + version: 3.4.6 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.1-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.1.1-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.1 + created: "2023-09-12T13:07:45.181745613Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 38a25969092bcffed82f4523361d26611a8b27ef373224850ff5a1a94deff31b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.5.tgz + version: 3.4.5 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.0-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.1.1-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.0 + created: "2023-09-08T13:18:59.838553478Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 3b4d89aa1ad15e31a6156f3570d3c2fe38806770983a51cb7938efde1752b593 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.4.tgz + version: 3.4.4 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.0-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.1.1-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.0 + created: "2023-09-07T14:26:10.132040807Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 6b831d9e986c2db345a1544ebe3f803a26f7d7dce81ea3b682013f3fe21c0061 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.3.tgz + version: 3.4.3 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.4.0-debian-11-r0 + - name: grafana + image: docker.io/bitnami/grafana:10.1.1-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.4.0 + created: "2023-09-05T15:10:19.436332288Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 7df3d39031cba97435fd15ec6afbf5957010df71bb309c1887051d507672a68f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.2.tgz + version: 3.4.2 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.3.0-debian-11-r24 + - name: grafana + image: docker.io/bitnami/grafana:10.0.3-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-09-01T09:33:15.04389337Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 88f6c94e72c79ef2adaaacb67be9e83bcbce101276a3f242758552702e09495a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.1.tgz + version: 3.4.1 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.3.0-debian-11-r24 + - name: grafana + image: docker.io/bitnami/grafana:10.0.3-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-08-25T08:37:23.551673029Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 334bfe6a0cd05822eb334e5f605cc8fda38edaa4c788f1346d8f718d725e2b8a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.4.0.tgz + version: 3.4.0 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.3.0-debian-11-r24 + - name: grafana + image: docker.io/bitnami/grafana:10.0.3-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-08-24T20:49:58.384129956Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 1a27a0fbab512db278e5ad4b8f7a4d3e95ba1f693a2d784eb3e6be33804763a6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.3.2.tgz + version: 3.3.2 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.3.0-debian-11-r20 + - name: grafana + image: docker.io/bitnami/grafana:10.0.3-debian-11-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-08-17T17:23:20.644305113Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 5396ffb93eb163f819170b63d98b72f88b0b6461b1b599ee057615cb82d24071 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.3.1.tgz + version: 3.3.1 + - annotations: + category: Analytics + images: | + - name: grafana-operator + image: docker.io/bitnami/grafana-operator:5.3.0-debian-11-r24 + - name: grafana + image: docker.io/bitnami/grafana:10.0.3-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-08-22T18:43:36.891595264Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: cf86e7747ef9a3ca7544392a09d3e3e4a77235eb61a8fe73ce800f441c312beb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.3.0.tgz + version: 3.3.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-08-08T15:00:31.178310062Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 8eebbde957754fe7e07397640a18f6cc04726bfc3af5a48763563b0cf6e42385 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.2.2.tgz + version: 3.2.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-08-04T14:49:23.271615509Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 5afa0ce47f33ce10a9865b5204109ab81d5a45b8f79d1c7ee4fabaf28f4ce876 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.2.1.tgz + version: 3.2.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-08-03T10:22:33.845919637Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: f10accb9585cf79138b386a3a8f94fff56ff76ecd3ada4016e2d94e595514f05 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.2.0.tgz + version: 3.2.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-08-02T14:53:18.88147875Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: c5ae0562ebc9da2d6ee76ffa60eea99180181131b564090fdd55e2ec765d9886 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.1.4.tgz + version: 3.1.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-07-26T08:15:24.396298552Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 12eeeb997b2d140a0df9267d02dfc41c10e6e1a79c506e790406d55c14c7584b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.1.3.tgz + version: 3.1.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.3.0 + created: "2023-07-25T13:02:32.329708241Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: bbf98096a0cb02cf12028b08f79a78061623bb3bc1bce186affc7386125e9ccb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.1.2.tgz + version: 3.1.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.2.0 + created: "2023-07-24T16:40:37.868064161Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: f3da731625ea0581fda5a9bd3527818151d0e03f8d35d63534656f5903546527 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.1.1.tgz + version: 3.1.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.2.0 + created: "2023-07-24T15:09:29.322704632Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 2fbef9dc034074a4ff37cb135becc9d8b5606be66069116e8a353bf18df46e2f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.1.0.tgz + version: 3.1.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.2.0 + created: "2023-07-21T16:50:57.001959717Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: dcd675f862e88b5d945b8f2272c91f048fe33846fb6b7ecef35b650c1c3f9079 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.0.4.tgz + version: 3.0.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.2.0 + created: "2023-07-15T10:00:56.363981233Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: a2188f62eaf997b5c551efa4adcbcf4d03fc05ce2b522cd808e0a03b5ebf2467 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.0.3.tgz + version: 3.0.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2023-07-11T01:51:57.212348198Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: ab3b0f7a5aa7c5fc3da301ebb8ae4dcb3d9cc792e2b5110fef6935a34a7f3e11 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.0.2.tgz + version: 3.0.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.0 + created: "2023-07-07T11:34:36.176271781Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 690de5bd8ff5ae0f4cb66310e821b7622b276c41bc064b879e236187fec9dd3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-3.0.0.tgz + version: 3.0.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.10.1 + created: "2023-05-30T10:07:15.802433003Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: cb437e3a6bc75cc1d413675a4c5994a93b1193346842b242134c19e85bdfb221 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.9.3.tgz + version: 2.9.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.10.0 + created: "2023-05-21T15:29:06.792934762Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 8c79448f314f1049b70e0959973309e85dac35b634006e5e5614e11ecdedf923 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.9.2.tgz + version: 2.9.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.10.0 + created: "2023-05-11T14:18:33.65149736Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 59c692f2440beed873b8ddfc4b0f9623389f64ed39589bdd84d726e27abac51f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.9.1.tgz + version: 2.9.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.10.0 + created: "2023-05-09T12:52:20.703725945Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 943288e5bdd36ec1cf5ea9aabe2fdd62ba495752fd90a0dfc878c7b2968ebf0e + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.8.2.tgz + version: 2.8.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.10.0 + created: "2023-05-01T13:48:06.536592015Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: abcd0f7ea1aff07e136a464ff87e4251a80e460f9d1885dcdfa87f6677de93e4 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.8.1.tgz + version: 2.8.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.10.0 + created: "2023-04-01T13:49:41.188136468Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: ed8ef8cf38ac230d5601a1ef7dc29f78be7ec7737a80587a45338dd53e6d82dd + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.25.tgz + version: 2.7.25 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.10.0 + created: "2023-03-18T22:45:48.3922162Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: b2825d991f0d97d8c9d7d28ee70724431ebff93bb5e629e6eb60a93066c4d7a1 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.24.tgz + version: 2.7.24 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.10.0 + created: "2023-03-14T12:36:38.866532937Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: e2e9d1ae192a30f585b3dcc11007a5e2c00f8667cad8e3e112874b79661db891 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.23.tgz + version: 2.7.23 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.9.0 + created: "2023-03-01T10:00:56.89968353Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: ab6996cb9dffd941af723aa0c5afac1bdd0a59970e02c8b4e80a18d56cefaea5 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.22.tgz + version: 2.7.22 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.9.0 + created: "2023-03-01T07:02:39.309942007Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 0ff05803fb3e3a89abf770241c1eb53fbc122a729afff7c4cf935f62a4c56f5d + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.21.tgz + version: 2.7.21 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.9.0 + created: "2023-02-17T16:02:55.149767477Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 948d5d9b8061cabf84179746121341c7e2f4c11a25da1cf3e077dfc903fafc5f + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.20.tgz + version: 2.7.20 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.9.0 + created: "2023-02-14T08:45:09.002337129Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: e775c93c82790566d9bb5a7f997f6c478c39ef6402a758c0bf74e50e376aa086 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.19.tgz + version: 2.7.19 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.9.0 + created: "2023-02-10T13:40:03.941996817Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: db995430bb6541cd75aeb5de52d0bf129708ff66ae3ed4312f3d4255098a0b21 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.18.tgz + version: 2.7.18 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.8.0 + created: "2023-02-01T10:43:06.446363121Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 4b3ca166e35bec27719077d20adf9580ff2a95ddf3def224d45cb74ed40076a9 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.17.tgz + version: 2.7.17 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.8.0 + created: "2023-01-31T13:38:20.27571234Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: c5c315ff3fdaeed14404fdb5812433694264248de503d7a080048d14e7fcc529 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.16.tgz + version: 2.7.16 + - annotations: + category: Analytics + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 4.8.0 + created: "2023-01-12T15:27:21.348746564Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: cabe03aa1a1c68d2ebea28889cb22e4876ef732ec020b6cb1b22e7d3601760c0 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.15.tgz + version: 2.7.15 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.8.0 + created: "2023-01-09T10:51:05.932238608Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 0412ef2935fdcb3c1130b97bc62971f4735107c740e7b0b0a2b7cd8b9732b3eb + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.14.tgz + version: 2.7.14 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.8.0 + created: "2023-01-04T08:17:19.653313845Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: b8b17dfa4bdf3060d5e2beb871086b29e91e1f32c6fec0799f4c7961d9ff6c3a + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.13.tgz + version: 2.7.13 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.8.0 + created: "2022-12-31T13:57:53.346803737Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: d426227f73b3dccdcd2ff1f8b2336e510f02ad4bf2610029d7b77ddf902a3d70 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.12.tgz + version: 2.7.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.8.0 + created: "2022-12-13T11:19:25.426008163Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: f120c90a286b226f6e59272aef7e7af0f18005577c2b524bb5093fdb413c2e03 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.11.tgz + version: 2.7.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.7.1 + created: "2022-11-18T15:54:10.362784457Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: a01413fd21eb248b979079ea4ebe1d4f9b308ae3a43e7551ada7e1427bfa5fc5 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.10.tgz + version: 2.7.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.7.1 + created: "2022-11-08T11:39:22.903237234Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 41a056d26c3f45cf406a7e8cea8c47972e90b82f34317258231416ae2d30ba9c + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.9.tgz + version: 2.7.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.7.1 + created: "2022-10-19T15:50:39.908199118Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 5bfe5be867e4a7929ac39613fc019e5ba04c972de3c1b5615c93ab865613a1ea + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.8.tgz + version: 2.7.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.7.0 + created: "2022-10-10T09:29:57.244989692Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: 63f7660f526fca25bc630440a883b0e9150031559bf64b279f9699ae5a168bae + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.7.tgz + version: 2.7.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.7.0 + created: "2022-10-07T11:22:10.781941224Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: cec4044d8dc9c10b057dcb9d7e6126c3d9de61bec369b8fc0d086972adfc5ad1 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.6.tgz + version: 2.7.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.6.0 + created: "2022-09-22T09:30:05.712264071Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:70a7be8b9cb4df1e966321e2a8b74d9844bb47d2a7e4e02fa6d614a6e28caf6c + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.4.tgz + version: 2.7.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.6.0 + created: "2022-09-18T19:59:55.781031317Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:e6523eec37c60f91dfc953a185757d4a12bae59e61455dd06320ecb14e61625e + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.3.tgz + version: 2.7.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.6.0 + created: "2022-09-07T09:57:40.185224517Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:025c767911278f99d78fc1e7ef56d459f2b6e347df1dd7bcf8f63d9f0b3cea94 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.2.tgz + version: 2.7.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.6.0 + created: "2022-08-23T23:16:42.138455635Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:e98af9fd07f102962571d9b7275fc37348d742807af37825b2cd8d5db48a5a15 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.1.tgz + version: 2.7.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.6.0 + created: "2022-08-23T00:14:40.197777259Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:805f3340132cbb01875543fd2a197fac9de9c7717b5199e455a9586b405f23a9 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.7.0.tgz + version: 2.7.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.6.0 + created: "2022-08-22T08:53:14.995015582Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:0f01d7f8a751bdc1eaa441bfac78a9667ee15b45086d6edf2a838ed7356944e1 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.12.tgz + version: 2.6.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.5.1 + created: "2022-08-09T09:17:08.782917804Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:c012a729168b4d8828caeea81849520ea6c1683f825cf9299329b30487cdedad + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.11.tgz + version: 2.6.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.5.1 + created: "2022-08-04T22:11:01.049629293Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:98ae9b585b14594a1233dfab8bd230f88625f17ed20acc7142ac7898dc4ef857 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.10.tgz + version: 2.6.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.5.1 + created: "2022-08-03T23:28:27.847717016Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:9b001212a66266b81a6b96df7c33af7df128575134590051c3a840c893305386 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.9.tgz + version: 2.6.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.5.1 + created: "2022-08-02T09:24:44.147701818Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:7f1b5fb0bf8bbc7b2bee999eeeae7c3ea6804054c4bc9cfde5ee82879b4ac2fa + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.8.tgz + version: 2.6.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.5.1 + created: "2022-07-25T22:34:20.240223622Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:c8e59613974d40183dfadfdcf089b804d093b2823acd32e78568c09faf346287 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/bitnami-docker-grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.7.tgz + version: 2.6.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.5.0 + created: "2022-07-12T19:24:56.742977114Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:6d10727f640b301fa059c4bdbcc40c9b00cc44e777ba8c8c6136931560957337 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/bitnami-docker-grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.6.tgz + version: 2.6.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.4.1 + created: "2022-07-10T09:29:19.681801572Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:6b12478bc562e180e5fd179c8715904643deae9fd9e90c4a62a2bb75974919f2 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/bitnami-docker-grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.5.tgz + version: 2.6.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.4.1 + created: "2022-07-01T02:50:54.440510364Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:a2652566f0aa044e1ae46e9aaa01455da1f1523b5e5406ccd73a09c4a7d25c2b + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/bitnami-docker-grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.4.tgz + version: 2.6.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.4.1 + created: "2022-06-10T14:43:23.939108815Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:9a4a6c7a82127deabf5cb3fb9a3ae26549a9459e78bb4202ecced318a9879a9c + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/bitnami-docker-grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.3.tgz + version: 2.6.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.4.1 + created: "2022-06-06T22:23:48.625098509Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:1da9d5d43ad07227d22dfd850a1c5b35b1522918cfc3711cd57b356e844c5fc3 + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/bitnami-docker-grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.2.tgz + version: 2.6.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.4.1 + created: "2022-06-01T14:57:29.807927536Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Operator is a Kubernetes operator that enables the installation + and management of Grafana instances, dashboards and plugins. + digest: sha256:ea9a9255051f8d7f1f7db6d120c2515a72a41d44a02ec61d02ee724256ee8a4e + home: https://github.com/grafana-operator/grafana-operator + icon: https://bitnami.com/assets/stacks/grafana/img/grafana-stack-220x234.png + keywords: + - grafana + - operator + - monitoring + maintainers: + - name: cellebyte + url: cellebyte@gmail.com + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-operator + sources: + - https://github.com/grafana-operator/grafana-operator + - https://github.com/bitnami/bitnami-docker-grafana-operator + urls: + - https://charts.bitnami.com/bitnami/grafana-operator-2.6.1.tgz + version: 2.6.1 + grafana-tempo: + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r9 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r8 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-08-07T03:21:35.086316182Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: be7e0c03b9f9a925104c4299f7379940578bd32314cae2d0216e9cdfe4329e02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.7.5.tgz + version: 3.7.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r8 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r7 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-07-25T04:43:32.128767161Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: d2aaa893cbadff4041c2cb9aa667f1b4d9579c2ad2d97ea9dfe7778acc9ccd46 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.7.4.tgz + version: 3.7.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r7 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r5 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-07-24T05:36:22.137948298Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 0276a4a68f81c6fbae04de8c7386cb4f15790f98346381e92d1e91d1f965fdc9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.7.3.tgz + version: 3.7.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r6 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r5 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-07-24T06:34:20.8976637Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 784caef8850f82e662c4a549f5d76e38d2481d709b2fb31e6ce0e68daae71ec0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.7.2.tgz + version: 3.7.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r5 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-07-19T06:55:20.204809329Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 0947f667826d914848ddb4ac309f726ca6c3e9d0a827aea6565b9b49f8793670 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.7.1.tgz + version: 3.7.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r5 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-07-17T09:29:39.813274671Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 60bd41faca202ab47fb58b8c816668ef057b07ecce2f69ed1d6fc45d4e5f01d7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.7.0.tgz + version: 3.7.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r5 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-07-08T09:39:55.018483158Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 9787c7827f292ce2df3fe3fd22b162684cf47a9393e98914c0c897dc55973c12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.6.3.tgz + version: 3.6.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r5 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-07-04T14:30:18.203401969Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: dcad633147e416ddd7fe061bbf1bb66e148405439257ba8ceccf37f26bbea373 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.6.2.tgz + version: 3.6.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r4 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-07-03T02:43:25.162926309Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: d5da84fd522d1e39b23960b9ce482b9e277bbe700e701442dbfb9201affaa3d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.6.1.tgz + version: 3.6.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r2 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r1 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-06-24T08:55:04.25036518Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 169d69b13bf46a55b3166fd60b8c6644f59716aa6ea433aed0fd135c6487d843 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.6.0.tgz + version: 3.6.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r2 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r1 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-06-18T12:00:57.751788889Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: c701baec4f21b0fa08d28b80f90eee7842c904d4ebc34e506bccbc4404e6a794 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.5.5.tgz + version: 3.5.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r2 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r1 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-06-17T12:30:03.491543354Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: c3087b637869e02d52fef6d33c2bc32702f1306e7a5cec078238df4395f4e533 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.5.4.tgz + version: 3.5.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.5.0-debian-12-r2 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.5.0-debian-12-r1 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.5.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.5.0 + created: "2024-06-14T11:19:11.425546743Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 8869e183ed65a1497cd4b1d0ebb7c401158e1e3c665a8b86da56c418e27d00f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.5.3.tgz + version: 3.5.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.2-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.2-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.2 + created: "2024-06-05T14:15:39.151820633Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: f55d44efa0e8ff19fca96a10c7c64da155f2baf547312e08333aa57fb85aa079 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.5.2.tgz + version: 3.5.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.2-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.2-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.2 + created: "2024-05-29T09:15:21.487464063Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 5cd76e1febc31c3809974422d9a1d2c8b3218786c944309a670e9c02ebcdcb0e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.5.0.tgz + version: 3.5.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.2-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.2-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.2 + created: "2024-05-23T14:36:20.378410803Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: fa151e68863255651ce357c87ceb0d2760b0a4cfc3a32adcbf6ce0abe21f4825 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.4.1.tgz + version: 3.4.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.2-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.2-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.2 + created: "2024-05-21T12:55:23.266486179Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 184e9ee5e669193e5be887805143edb1cad9243e9b1f787d738d227ff7023935 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.4.0.tgz + version: 3.4.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.2-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.2-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.2 + created: "2024-05-18T01:27:28.995829265Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: d55d343970c6b5bb9fe79022c724688071d52c4e7b1cb817226cb80b7e8d2266 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.3.1.tgz + version: 3.3.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.2-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.2-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.2 + created: "2024-05-17T11:54:18.445785488Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 8c436e705913fee9cc62ab41791598ccf542d094c0dfa905af5ffa676a090c13 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.3.0.tgz + version: 3.3.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.2-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.2-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.2 + created: "2024-05-15T15:29:22.895726755Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: a7e512b119d038dc49feb546b9df15bfc1c8f4ca4d4cbcc2ef2e6d5062093f3a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.2.1.tgz + version: 3.2.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.1-debian-12-r7 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.1-debian-12-r7 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.1-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.1 + created: "2024-05-15T09:15:10.184712572Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 19ae616f6ae1572180e68be0f2ef27c29530a059cf2b8223a10b47cb90cf2107 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.2.0.tgz + version: 3.2.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.1-debian-12-r7 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.1-debian-12-r7 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.1-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.1 + created: "2024-05-14T05:48:48.092343058Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: dcd234434ae77d4758e7db3ef9b9a76316d4c553196fe09a2999e0693b22bb62 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.1.2.tgz + version: 3.1.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.1-debian-12-r6 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.1-debian-12-r5 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.1-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.1 + created: "2024-05-07T23:06:59.686495565Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 462f0635488a7c7fbac368f1f7c8cb2d9374ca9ba5466d3be4cfede8d7eaf32f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.1.1.tgz + version: 3.1.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.1-debian-12-r3 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.1-debian-12-r2 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.1-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.1 + created: "2024-04-15T13:07:50.411719151Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 2d5dc0631d931d8c5f75b98f64cbc8da39fd36d773a77d8d472fdaabf95ab7cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.1.0.tgz + version: 3.1.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.1-debian-12-r3 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.1-debian-12-r2 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.1-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.1 + created: "2024-04-05T16:59:58.370631313Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: c84260798c645b057373527c947ac2c7eee918e19d8b8f42e3cfdb032ab4c7b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.0.3.tgz + version: 3.0.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.1-debian-12-r2 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.1-debian-12-r2 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.1 + created: "2024-04-04T15:05:33.876057612Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 560356991b7aefc4b72ff2bbce74c4ef2a66d20c1612faf6e5a3cea08c2fa54d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.0.2.tgz + version: 3.0.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.1-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.1-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.1 + created: "2024-03-19T19:42:22.875530248Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 0357a4784acab9d06c7958343b12e9fd69bdd5433791f5906b008520a2edcdd9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.0.1.tgz + version: 3.0.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.0-debian-12-r1 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.0-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.0 + created: "2024-03-19T07:43:45.906903739Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 7.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 5de78c9e64221aa5f53742e4d91567d1e02ff1b6fba57dfe7dbc1b7248df4ad8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-3.0.0.tgz + version: 3.0.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.0-debian-12-r1 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.0-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.0 + created: "2024-03-08T12:03:36.325271589Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 50a9dd0c13fe5f784dec32184d481ea8eadf2c5253cbec23c5106cac466e6653 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.13.0.tgz + version: 2.13.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.0-debian-12-r1 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.0-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.0 + created: "2024-03-06T18:53:15.070782756Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 99f72ce7202d1bd487f12ebe335c9c5127c586240c6f0eca9051d26efb435467 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.12.1.tgz + version: 2.12.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.0-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.0-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.0 + created: "2024-03-06T09:11:29.28264808Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 0182d234eb4ab26bf160fcfb5eb6ea190334bd818cd3a4866e3594b435da277d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.12.0.tgz + version: 2.12.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.0-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.0-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.0 + created: "2024-02-29T12:45:12.627588849Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: b5493dd2e9f13bdbc51f6669bfc1aae43a1c8b9c053516ca2aecfdcb8f7ec7b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.11.0.tgz + version: 2.11.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.4.0-debian-12-r0 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.4.0-debian-12-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.4.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.0 + created: "2024-02-26T22:48:25.010226894Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: ee58a50468e7ca64632692b8cc7fe209d144e89a649ab72b168ed8b64a2801e4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.10.3.tgz + version: 2.10.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-12-r14 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-12-r14 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-02-21T17:45:34.148263637Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 046b5adb27f6dc79bca9a5ee94be8966d2d975334eeb7541d1b4d17275ce5d81 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.10.2.tgz + version: 2.10.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-12-r13 + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-12-r13 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-02-21T13:06:33.582673127Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 54c886047e32f20d8c85741999ccc87c00d5dc0d753e8f78931357bca8f2c329 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.10.1.tgz + version: 2.10.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r9 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r9 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-02-16T16:26:41.671154621Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 4e11aa335e35d2349ec58635e543731c812658580a3fa64457b2930c4060ae3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.9.0.tgz + version: 2.9.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r9 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r9 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-02-14T12:24:35.254731348Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 2c4adefcc8832bc91167c651a6445578c8d3f045042680ddc683eab7e02521e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.8.0.tgz + version: 2.8.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r9 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r9 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-02-07T17:07:09.690891831Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 9b37206198b29292b6f6c3ec5205f64835890ca763cc15a7ded5f93332295ca9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.7.6.tgz + version: 2.7.6 + - annotations: + category: Infrastructure + images: | + - g + - r + - a + - f + - a + - n + - a + - '-' + - t + - e + - m + - p + - o + - '-' + - v + - u + - l + - t + - u + - r + - e + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-02-07T11:06:37.15586383Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 89f9f34c900166e567e69c24a589edd79bb256773e65de2ed60fee5a91cbd0bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.7.5.tgz + version: 2.7.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r8 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r8 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-02-02T17:13:20.596296652Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: d4304f57f1ef017fd2674f63ee0050f77dd944cce6398d64f7b330889513f9ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.7.4.tgz + version: 2.7.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r7 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r7 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-01-30T11:29:35.766259069Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: c316cda5da0748a0b4b8b9b3fe4bad134d6ff2e6973191bbc44154939fa60c67 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.7.3.tgz + version: 2.7.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r5 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r5 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-01-27T18:00:53.791480348Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 89566117e20a19a98fa94cdb4ba72d7703432736bccbc8068307e60a7ecd8bdb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.7.2.tgz + version: 2.7.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r3 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-01-26T09:10:09.352278367Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 53b014f206c73cd28ecb9e34bbeb7b4eb7cb34cf572b081dd66755ef0f1e22f4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.7.1.tgz + version: 2.7.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r3 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-01-19T09:29:44.029043705Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 55b20dc53ad6e9036cee718ca11f93469e6137938ac97500ffa4da3b79a954a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.7.0.tgz + version: 2.7.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r3 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-01-18T10:28:26.113427159Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 5f63fd7a051499ea8ca0e4ab5f292b7c8639642ae27c0e8c1390810b20725043 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.6.1.tgz + version: 2.6.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r2 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-01-16T15:40:01.401384195Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: fd4da6c2fe1d60c74da4a59b03ef877918458f59c4d5c7160fd9de4910f6e015 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.6.0.tgz + version: 2.6.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r2 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-01-15T11:12:42.806615389Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: ef24cb5696104d3f74e5eff3e041a50df3ef0ded1b2a8773d2646f78eb7b261f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.10.tgz + version: 2.5.10 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r2 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2024-01-10T14:36:15.470730902Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 9032694396c12c75e58972ca488d762bf7df92f4009a2567bd685b196df2c408 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.9.tgz + version: 2.5.9 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r1 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r1 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2023-12-06T20:31:29.311805212Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 491508653d71e31344358c44b70a82f9ef85f84545f298681ec48984e83c558b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.8.tgz + version: 2.5.8 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.1-debian-11-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.1-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.1 + created: "2023-11-28T22:45:50.740708722Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 467ba9b54058615ee6e1e0f5f46e5791982245da7dcafa814624225ce8d2e1bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.7.tgz + version: 2.5.7 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.0-debian-11-r4 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.0-debian-11-r1 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.0 + created: "2023-11-21T18:30:45.906164076Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 7925b32cbf782a629a927811355586ec80014b522a8f06973b8486dd1cff52b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.6.tgz + version: 2.5.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.0-debian-11-r3 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.0-debian-11-r1 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.0 + created: "2023-11-09T11:03:51.484596371Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 152f74e509e138a422616b2b578940b53f45e5e2681de0cebe7945b108f52294 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.5.tgz + version: 2.5.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.0-debian-11-r2 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.0-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.0 + created: "2023-11-08T19:59:37.844873396Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 9e6874173db8edc56abe86f0db3173eb31d8807a5b6a9c07fd10e2bab6697068 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.4.tgz + version: 2.5.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.0-debian-11-r2 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.0-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.0 + created: "2023-11-08T16:31:28.539705813Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 574db305b6890921c324b5182457f5979edf51f40d6d67fb2d3d93b9817f9f9e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.3.tgz + version: 2.5.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.0-debian-11-r2 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.0-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.0 + created: "2023-11-08T13:25:52.379413413Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 2ac4c276996a98bbde43d3d9b80c714bdbe107af9677a1cf92c16b6034643419 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.2.tgz + version: 2.5.2 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.3.0-debian-11-r2 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.3.0-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.3.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.3.0 + created: "2023-11-08T11:41:08.050167461Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: a5c0ada1d6f06218fd195ae9b70fdd0a4bbdf3f24b2ceab483fcf583a8830e98 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.1.tgz + version: 2.5.1 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.4-debian-11-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.4-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.4 + created: "2023-10-31T14:42:45.649848736Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 37f8a9e3fc2261278c96cd8900ed39dfc123e63ffca3a83d8dd26540b3abcb09 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.5.0.tgz + version: 2.5.0 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.4-debian-11-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.4-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.4 + created: "2023-10-25T18:04:06.915160961Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 9b6b60aaf01d1260fb200619a5a27dbad6ffd35144cd33afd9a848faa8ea47f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.13.tgz + version: 2.4.13 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.3-debian-11-r12 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.3-debian-11-r10 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.3-debian-11-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.3 + created: "2023-10-12T15:10:15.89223579Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: d7560ebad7c40ae1399d62f7991f69b427adb1164c7f9c77e9a13a45cbf084b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.12.tgz + version: 2.4.12 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.3-debian-11-r12 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.3-debian-11-r10 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.3-debian-11-r23 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.3 + created: "2023-10-11T05:48:44.124623813Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 30bd68d2ecf3e78a7ef72d7b63f1a78e51e161bd5a5fb63a5216a5c13f5bb0be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.11.tgz + version: 2.4.11 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.3-debian-11-r10 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.3-debian-11-r7 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.3-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.3 + created: "2023-10-10T02:18:13.306331074Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: c3538435a6d8197294c64380b40e6ca4c602535effbf25d00dca1d38a439fa05 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.10.tgz + version: 2.4.10 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.3-debian-11-r9 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.3-debian-11-r7 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.3-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.3 + created: "2023-10-09T23:40:22.709050759Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 084e5441f8744f4192011f24ee77c39531810e1f358a5e5cae0143c10332b743 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.9.tgz + version: 2.4.9 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.3-debian-11-r7 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.3-debian-11-r7 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.3-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.3 + created: "2023-10-03T22:32:54.75367468Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 296b050bd84ad0422c7157f9d424b934f65a21c546d3d4fc58c433b97dddccef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.8.tgz + version: 2.4.8 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.3-debian-11-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.3-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.3-debian-11-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.3 + created: "2023-09-27T07:38:59.464649121Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 88059da00cfdd760af20c4643f0505eb0b49a9cb2b7967a1637c65ed34153ef2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.7.tgz + version: 2.4.7 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.3-debian-11-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.3-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.3-debian-11-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.3 + created: "2023-09-26T08:54:45.618823616Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 02545ec38c7417546890d6a7a972fc77897de206c5d46a711d0fe11376b9ab9a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.6.tgz + version: 2.4.6 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.3-debian-11-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.3-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.3-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.3 + created: "2023-09-26T07:45:09.801224337Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 64bc7c6a26062b8e1bd4233f406af905c8ab2fbfade187eeb393bae143fc7912 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.5.tgz + version: 2.4.5 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.2-debian-11-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.2-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2023-09-20T12:54:15.470673064Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: d708fdb1479087bd83d3010c1b83cfb6dc00e7241121e880e57068e7efaaf1e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.4.tgz + version: 2.4.4 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.2-debian-11-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.2-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2023-09-11T14:06:36.584139506Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 4304bb81e3a131dccd0d359d323daf7f29f4d4f40367d1f7b9bed3709e5d468f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.3.tgz + version: 2.4.3 + - annotations: + category: Infrastructure + images: | + - name: grafana-tempo-query + image: docker.io/bitnami/grafana-tempo-query:2.2.2-debian-11-r0 + - name: grafana-tempo-vulture + image: docker.io/bitnami/grafana-tempo-vulture:2.2.2-debian-11-r0 + - name: grafana-tempo + image: docker.io/bitnami/grafana-tempo:2.2.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.2.2 + created: "2023-09-11T10:20:55.066844624Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 8b368023154bb8dc621f2e6b84717857e4914dd088716dae91aab5f205a9051d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.2.tgz + version: 2.4.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.1 + created: "2023-09-06T09:09:08.889794641Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: bc2e8b7b54e5ac4cc3035276ca2ede8a9e865501095d0de0650545e5d746ec43 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.1.tgz + version: 2.4.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.1 + created: "2023-08-25T08:48:39.509150264Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 2f5be97aec7ef4281803ec83ab32e67073cadbeaa45604c2b1bd8a252d75be5e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.4.0.tgz + version: 2.4.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.1 + created: "2023-07-25T17:31:25.847061716Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 01626d5d284fa79c5bd03a34fba55a328575e7c294ed1f8338912ae7450174bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.3.6.tgz + version: 2.3.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.1 + created: "2023-07-15T09:43:28.490068513Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 62acd49cc9f74e5d9e1380b9e4e678d62cc4250d65aaa4ebed93f78135e7a100 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.3.5.tgz + version: 2.3.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.1 + created: "2023-06-20T20:01:54.438471874Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 37441b481fee55dbc7bd5c3d10b9e9bc3991a2931b30028332e51d3622c390f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.3.4.tgz + version: 2.3.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.1 + created: "2023-05-21T19:52:06.037069413Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 1f21b641d2dc4823126a5a029f788a0f4b24d15a27718827e924ad6f6e3e7b06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.3.3.tgz + version: 2.3.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.1 + created: "2023-05-22T08:00:52.448052275Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 6ae324221f5593b3b9838d657c8858509a17a01a766c6883455a8736037e64f4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.3.2.tgz + version: 2.3.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.1 + created: "2023-05-15T08:45:23.892043799Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 55d212eaf4a58cbf3c12396df87b8ad21a5189281f446015fd8b1084211bdee8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/grafana-tempo + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.3.1.tgz + version: 2.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.1 + created: "2023-05-09T12:57:13.570352548Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: b22b32c5f8303e7106e071eda686159b56681fb128882bc245e472c35c0096a2 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.2.2.tgz + version: 2.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.1.1 + created: "2023-04-30T07:35:29.779806751Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: oci://registry-1.docker.io/bitnamicharts + version: 6.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 74ac169e7e5937d39f13f182fdbff4c1415279758ef1b9dff86b1128d762ee51 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.0.1 + created: "2023-04-01T13:43:32.697625761Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 67b9c36b7fd49e356d839381abb1c85e8c86753bdb79be602afc432811bc0b5e + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.0.1 + created: "2023-03-28T11:48:11.687217908Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: e424839d3a1e72ed8c77149f4a134a02799c18c75f2fa2a2f569ebee59c2e130 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.0.1 + created: "2023-03-10T09:34:51.689088011Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 8ab2b99934efced163d8b66a2c2c9373926ae862f7732c162673f61fbe1882e6 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.0.1 + created: "2023-03-03T18:31:06.080876035Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: a9049787234c36c24b290582a04ddba37b6d0f34d838082f5e834c6d2b7739c5 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.0.3.tgz + version: 2.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.0.0 + created: "2023-03-01T10:16:17.209814603Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: e2d45106e7a6dd0d3ceed183880ede6ab657bd8ff1537c73a06055c0086aa906 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.0.2.tgz + version: 2.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.0.0 + created: "2023-02-22T17:25:40.766688105Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 3b0ae62e791e2273d02e56236d96cc4c40284f59750da892d47ba30a5c1a76de + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.0.0 + created: "2023-02-14T19:02:25.192259276Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: efedaf9f387e98c76bede562a831a8e3e5cf795d08ff54e0465ec062e2cf477d + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.5.0 + created: "2023-02-13T22:31:38.058921587Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 9e846068d7d0985cf0d870cfa6d8d18388f454378d48883c0ca9b0e87d9b56ac + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.4.8.tgz + version: 1.4.8 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 1.5.0 + created: "2023-01-14T22:16:25.442454564Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 521fa43e44175ca1611d7979d1b6d6b06fcd803acf755b44cd438569ccb9464e + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.4.7.tgz + version: 1.4.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-12-15T22:07:01.706809155Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: 320a9171d51cdf2c7143af51fa53baa0960d10677e9d8d3d388b6f0a66b759ac + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.4.6.tgz + version: 1.4.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-11-16T14:39:01.382490763Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:169f175b73c34e389e195592c60541807f1fc3cd97982a64477de2710acbeb82 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.4.5.tgz + version: 1.4.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-10-16T22:05:14.083400283Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:a87a1f209fd860f363130605d7244a185124f4264f1e4f005e12a539ea0cd408 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.4.4.tgz + version: 1.4.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-09-28T11:33:10.009697087Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:d5d6735803111216e2b60e0e663bdecf66f8568354a884479bf3f3a5f285a6ea + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.4.3.tgz + version: 1.4.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-09-16T23:41:44.531001144Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:117cbf3593c5210b0edbec53bab37f96d874a3fdbe03ca445936c8bd4464b7e2 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.4.2.tgz + version: 1.4.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-08-23T23:54:04.803998506Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:ea0af81612a9db16fff1f90479f4e22c564419cf591328060296e3a1847cdbfc + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.4.1.tgz + version: 1.4.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-08-22T20:24:50.607417874Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:4361a21c4a6921c9a18300b5dd0542e99b5e73a40fd3421eb6ff5416bf67364a + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.4.0.tgz + version: 1.4.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-08-17T22:33:37.589100143Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:7a99f568717b4dda1704c85a85a6180f256bc6a69d47343de385589acc4e9d19 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.3.8.tgz + version: 1.3.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-08-09T12:18:02.730942809Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:d97a7438d257141e199daa3df38249a46a2ef5258604c1a60f65b9db3277dd84 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.3.7.tgz + version: 1.3.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-08-04T22:51:40.487621704Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:614b7fdf3aef2e70ba7c2f3e7a256fbea598d159dfbc15ffdd8d67e437749e3b + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.3.6.tgz + version: 1.3.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-08-04T08:28:57.57408687Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:1cd17ccab436594a7f5c61e33f35afc45e25998f7cc17b1170d346257f201690 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.3.5.tgz + version: 1.3.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-08-02T09:58:30.026455853Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:aa8aefdc87e32de558cde3a978a3583d700833b3781991f8959f7b62733e9561 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.3.4.tgz + version: 1.3.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-07-30T11:41:11.713852477Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:d9b8d56099548660e2481834823f029b1e5bfb99d9d7ccd38c9dbb8794cbd2a3 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.3.3.tgz + version: 1.3.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-07-01T02:15:53.051793531Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:7ca07ec39c658d6c2a2d6c7b885adec009ad23559017a14a9cc9ea6212086e2f + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/bitnami-docker-grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.3.2.tgz + version: 1.3.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-06-10T20:41:26.662680364Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:e1d395bfebbc2fa2d417c12f6956e531f3c46374ae1237277fd0b78d8aea4aac + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/bitnami-docker-grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.3.1.tgz + version: 1.3.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-06-09T21:54:32.432392789Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:c9278a8d5bf760ef7e67cd13120b639e9f33e4fb9515a7749474ff56674f1e3c + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/bitnami-docker-grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.3.0.tgz + version: 1.3.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-06-08T12:38:05.275216404Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:3250230a16d9b874e55016c3ccaa5b6dbd64ae69085c776ec3cafef3ee46aac5 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/bitnami-docker-grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.2.3.tgz + version: 1.2.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-06-06T22:27:42.493669946Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:17a57fa250493a07857b1f9e589e9257f465eb9b581b272c6219a4cd6d4206c5 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/bitnami-docker-grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.2.2.tgz + version: 1.2.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.4.1 + created: "2022-06-01T18:36:02.52888937Z" + dependencies: + - condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 6.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Grafana Tempo is a distributed tracing system that has out-of-the-box + integration with Grafana. It is highly scalable and works with many popular + tracing protocols. + digest: sha256:93b3965a10aa19ebb0c3586781f0378f93d1cb7b696b0a94fbfc010b92de8a86 + home: https://github.com/grafana/tempo/ + icon: https://bitnami.com/assets/stacks/grafana-tempo/img/grafana-tempo-stack-220x234.png + keywords: + - grafana + - tracing + - metrics + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: grafana-tempo + sources: + - https://github.com/bitnami/bitnami-docker-grafana-tempo + - https://github.com/grafana/tempo/ + urls: + - https://charts.bitnami.com/bitnami/grafana-tempo-1.2.1.tgz + version: 1.2.1 + haproxy: + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-08-07T03:21:50.761117505Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: eb29685bb747d3904201b9914fa66c834da6217ed786a8c909db513121053675 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-08-01T08:09:56.224571978Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 03d63f311f4c7331d2c35adbc7321b2004cfea8841f62d4c7cd0617e75ccc1a2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-07-29T11:50:12.955700161Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 9e98c4db71be2851405f4f6d1a9bd478c4391fed29a3b0561838fb1efc233af0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.17.tgz + version: 2.0.17 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-07-25T04:36:00.342858502Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: ffa6a885cd9311dc6eb4445ccf8c233c676c8a04b313f17952ae1f4a4659f24b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.16.tgz + version: 2.0.16 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-07-24T07:29:34.429220262Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: e0ee32f5ebdf31fbdea8662797506d79f81a772a064c387c56a60c1be7e4c7f4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.15.tgz + version: 2.0.15 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-07-24T02:25:59.809881966Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: de83895e624e3bfb4acc78f958852ff2d459e7c5da198a1986ca68b078099d59 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.14.tgz + version: 2.0.14 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-07-16T13:18:48.010900933Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: c484bed9943fac4ca174b31130dcf5f877e11f5b923a25cb1eeb10041a7f8d2d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.13.tgz + version: 2.0.13 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.3 + created: "2024-07-11T15:48:47.13284176Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 8e74bad60298cb95c3d014de4bd50adb3578c9888260bdc69f41d97a0966951d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.12.tgz + version: 2.0.12 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2024-07-10T11:04:10.570575926Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: b539ffce1f94d5bbb3c0c6af67224e5e39134f7c6f3a22832f39e4f46492b501 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.11.tgz + version: 2.0.11 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2024-07-10T10:33:22.694122628Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 77688c895704a8aae2d632ddc04531249bbf3c60a666fc13a067bccd156745ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.10.tgz + version: 2.0.10 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2024-07-05T11:56:59.123903224Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 24d40310bca635e0213bea696940bc1971b4e963559a53b7f2ff4d35e60fb654 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.9.tgz + version: 2.0.9 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2024-07-04T20:16:00.019886241Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 76c26f3d477106c85f73421f420d115c8c721dbba5db65504fa5b8924e8f4fb1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.8.tgz + version: 2.0.8 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2024-07-03T03:13:49.073442257Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 5807d56cd7de01b850bd853b6f168675230ae7580f9445917995f1e2077139cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.7.tgz + version: 2.0.7 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2024-06-18T12:02:14.773549516Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: f0781bba7c3e7f33354468929eee6621491bb79ae7ecd69bf5e1ddde4d6c97fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.6.tgz + version: 2.0.6 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2024-06-17T12:32:08.997116081Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: e24242e5378a3a6e4ae5ea6c94b9eebb8fb3be5589191b5fe7439045285b4048 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.5.tgz + version: 2.0.5 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.2 + created: "2024-06-14T15:06:29.120493109Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 9c20c06ec3a0fd56bf5aa7694926967895d0ea8f11c5b72988480c1931df8959 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.4.tgz + version: 2.0.4 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.1 + created: "2024-06-11T18:19:02.584760985Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 7f8c577f3acb9dd31d21d67d0cbfe3215d4c49c742647d8315d333d2ebf3c1fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.3.tgz + version: 2.0.3 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.1 + created: "2024-06-10T16:20:08.619356684Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 8549a9b7f05b4abe572e77421bd4364bb41437a8769e60f088e04aac8b8ddd1a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.2.tgz + version: 2.0.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-06T15:36:40.633197086Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 21c9f43691d3813591703c0764203e87ca01b716a437f5551b8ab0eb683193b9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:3.0.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.0.0 + created: "2024-06-05T11:50:40.001804653Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 53646f4bc433688ecd1a486473719d8beafeacf670e4385c3edf87bfd93d71f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-06-05T09:47:22.322387336Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 497b870de57816600c5c9527d973a2d3faf6640949b7df20e39a800eb5b4227f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.4.0.tgz + version: 1.4.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-06-05T03:12:47.04716189Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 0894a73ba4ba6c95bd6befc84b4de2daa85dc73dd24ff0be08613bce093413c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.3.2.tgz + version: 1.3.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-06-04T09:44:19.069614646Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: ea4daf74cb0c8c74d89f96ce421ef99369ac2e322e211e4a764bd812095f041c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.3.1.tgz + version: 1.3.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-05-21T14:18:27.89662109Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 6dc088fa9e00e62e30ba8333e76b3b5ef81e6dedcd5cd22246ed910999a1d63e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.3.0.tgz + version: 1.3.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-05-18T01:27:41.240375004Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: f8590a23cadb44e81623d239204dd3a14a21a75054461a95537594b0b8f1e5a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.2.1.tgz + version: 1.2.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-05-17T09:41:51.105839324Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: bf0a353312a97c44bbc23ad9cdd5ff715a45c93e4e0776ee7fabea21cc884b8f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.2.0.tgz + version: 1.2.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-05-13T22:30:29.846122036Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: b11a2fcbe9bee752b942763119b500d38757b2b81c84763558b6ce36afd01a1e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.1.2.tgz + version: 1.1.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-05-07T23:00:00.451171112Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: bb873b68edde59e157a4123bc2b94501d2a0873850eb64fb60f7f7dce2fef6b9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.1.1.tgz + version: 1.1.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-05-07T14:11:45.585398628Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 49cd4adc2436665a68d83af96e59e31de28b6803c438067186d0093ef117132f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.1.0.tgz + version: 1.1.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.7-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.7 + created: "2024-04-05T22:32:18.719459987Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 9bd39966c36c4742da69c7ba23b9e3255ddb0d10e316683db2bf59600d8315b3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.0.4.tgz + version: 1.0.4 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.6-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-04-05T17:28:45.994699011Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 175412dc6e1f027a1f35fa6fe20407e72fb93f14c0025113bac22d34b7bd29ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.0.3.tgz + version: 1.0.3 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.6-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-04-05T16:34:58.884894905Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: bf0f93d62a85a41d3a991612f1da0562350ff0462b18abcfa227e4f5c04202e9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.0.2.tgz + version: 1.0.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.6-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-04-04T15:01:26.754903996Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: de1d5e69e6d5f5f899c0d4422f2971d973d7f672e559881be11e8cf188631ca7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.6-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-03-12T15:50:58.058170913Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 8367638277424b720fab87f4e70c6042e6939849d754c33a663bf8239f9eb5a2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.6-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-03-06T18:30:39.770829836Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 726ccc685fdd19027df07d840561181bd5c7c8493c06e45358b0fe10ec4f53a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.18.1.tgz + version: 0.18.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-03-06T10:53:02.263598163Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 23de54f18b00cb0a3da4039ab3898fd66d284ca6e8d698e07aed46111e0caf9a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.18.0.tgz + version: 0.18.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-02-29T11:05:43.807831521Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: e25d0731d846f3de4a7989ee2060f29b555c45a8847df4b8b0aa2aa5a39a6741 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.17.0.tgz + version: 0.17.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.6 + created: "2024-02-26T19:15:47.25074828Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: b07624412309859bc124165b7bcc4a8b3a80344b87aac43027360f072ba7bd9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.16.3.tgz + version: 0.16.3 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-02-21T17:59:48.482360443Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: d46e8709fc45b17a5cd04492c11993ace9a2cb7f516fc87d31ccd221bed14720 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.16.2.tgz + version: 0.16.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-02-21T13:04:52.441076694Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: aab5f1f9fcb588d61d851002d05c0852c7d2dd7afe404a093ac566ac2ae01cad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.16.1.tgz + version: 0.16.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-02-16T10:07:57.701003945Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 3bfa69ff48ed20b0e74989d53220d9f70b5ce5e43259a3a768698d10fadcc1cf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.15.0.tgz + version: 0.15.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.5 + created: "2024-02-15T22:58:55.892839528Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: c0bae9e966acadccf5be212b71ae10e9a227672e9aa9ee8d0c9c65f44fb6c851 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.14.3.tgz + version: 0.14.3 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.4-debian-11-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-15T12:03:40.416039974Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: a020ad3f2d2988f88adb5765101c058204a8cc6063a2263708b1a30d64749bfd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.14.2.tgz + version: 0.14.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-07T05:40:42.869253192Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: ddc2d73a8659d74f82818ef2fdfd3692aa679f729b3f0054b414eb9dc29cd6d2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.14.1.tgz + version: 0.14.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.4-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-06T15:47:58.510031399Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 114c01d2fa46450b231d539b04be4f9b2bd03926b8ea3f5f6abd7d73e60f2f3a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.14.0.tgz + version: 0.14.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.4-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-02T17:16:28.596964052Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: c992980c53e4a1728dc3b228d59dd0e9ba5d70a653e3371292325eb1d5e8566a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.13.7.tgz + version: 0.13.7 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.4 + created: "2024-02-02T11:13:23.256892802Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 14229d8d5f09ea8dc4837f6d7d116509dae43083276c0b51cf030b7a9a609fbf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.13.6.tgz + version: 0.13.6 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-30T15:17:06.240717732Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 98d7e0c6b5de705c6b6f9c4bc11b7cd2183bda466d7e42652e6c28eed07186bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.13.5.tgz + version: 0.13.5 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.3-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-27T17:57:10.494040798Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 67ce41e14ea3295e557e8a1207acd171e40eaab4d2cea86727468074fb7761cf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.13.4.tgz + version: 0.13.4 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-25T09:59:25.055512191Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 97e46ab7cc5bed04062e7b7d387f4e48a511b5747090e06a422dd88175cf812f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.13.3.tgz + version: 0.13.3 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-25T09:36:25.423483197Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 941f978e41427462e8fe0e72cf369609a5452daf5cd970f188a3df86727bc3fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.13.2.tgz + version: 0.13.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-22T13:30:30.245852087Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 58e5f062f5bdc303278d804228a1367d42b0c55172821403d7fb5233bb2536a2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.13.0.tgz + version: 0.13.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.3 + created: "2024-01-18T16:59:46.400358145Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 19206d84e2a0bceac08e6ca4ce1a9cc7f3b9676241acf442fb6f33b8b923b418 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.12.2.tgz + version: 0.12.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-01-18T12:37:44.153344271Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 2b40ce30031164b4188fe8f99ae9eeb7ffe7356c5a590dbe81865e4e95cf75ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.12.1.tgz + version: 0.12.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-01-16T15:39:48.726405215Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 06244e0c3d672b42181a59fba648420a7c9d1be631351c42cdfa90e68ca63fc7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.12.0.tgz + version: 0.12.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2024-01-12T16:05:42.726081812Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 66208905323dbe999f9395db7db49f22cf7b987af2017c04893833ffe1568b81 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.11.3.tgz + version: 0.11.3 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-01-12T14:35:13.872215136Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: e7f15231e222a3d56c52404e53a60f58d0e61fb5e294e30d8cdf599e36245931 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.11.2.tgz + version: 0.11.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2024-01-10T16:20:26.094110591Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 6135ab07b9803c95953d53bb9949742615f1ec7bfcaf58f73f14a48903b7fa70 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.11.1.tgz + version: 0.11.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-12-22T09:24:22.372604859Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 7f6854e9bce6c9eb2704e178cd06a7193099d5ae48db33557eecfeadb3579176 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.11.0.tgz + version: 0.11.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-12-21T10:29:27.041650435Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 7196ed32fe8ccf9a70c03e690c4e5fd140509b0a655a220ff7af599fb72f8776 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.11.tgz + version: 0.10.11 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-12-15T19:02:14.821004357Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 9718f72d7fb65888c3dc46b0d96ad8e016784fed55dd98ff5700f6e12eae9115 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.10.tgz + version: 0.10.10 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-12-09T01:59:01.535277391Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 5339e063daacfe2e383a26a5a0aa62a7f7f159a3093240fccc9f98ac1c88d818 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.9.tgz + version: 0.10.9 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-12-09T01:42:27.126724441Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: ebb436313ecdd98c0c9d4c846dba8388ebdd5bf75407b71d8be8bde0eccabe4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.8.tgz + version: 0.10.8 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-12-07T12:02:45.393635131Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 6025d98f904458c69a1c5518ac925efc1edab0510aa7860c814ef4760f41111a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.7.tgz + version: 0.10.7 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.9.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-12-06T02:23:43.828383055Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 82a31f6c2d9a05974036a16a672e73953c2b1fbc95a221ce74fc9ae09f7bfa87 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.6.tgz + version: 0.10.6 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-11-22T14:08:41.21351331Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 731f7dc0aac7173b5ce4e1a533fe1739fc084eee06dadbe3f072ca429d6ac707 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.5.tgz + version: 0.10.5 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.3-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.4 + created: "2023-11-17T23:14:45.250670167Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 74877666b8a87816ab76c9a1adec0793c82cad81bb4313f3ccd35d25781aba20 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.4.tgz + version: 0.10.4 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.3-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-11-09T17:20:56.508988334Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 7980cd1980c8475a54b53099a3465bc8a46eac247070035e6294f5f66abedbc9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.3.tgz + version: 0.10.3 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.3-debian-11-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-11-08T23:08:47.840732005Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: adbd21b5315819cf08a4f7fe0cb88ce4017a93906b6a9481ef030384bc1382fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.2.tgz + version: 0.10.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.3-debian-11-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-11-08T16:28:40.830308687Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 38e140439f76f8522bf2caa4f713abbe9f0fae5ee63ef76fb3034b8ae79f05b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.1.tgz + version: 0.10.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.3-debian-11-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-10-30T09:07:40.915728994Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: e62bd342d3cdba522c6400fdadb0b67d126145b0a98b2c1b764a55f6b143f88b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.10.0.tgz + version: 0.10.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.3-debian-11-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-10-15T10:22:30.189881316Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: d1653b1f38d69a65e6f08d93f09ab4b42877570285c0ae7a9e52dca91b0af8a0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.9.4.tgz + version: 0.9.4 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.3-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-09-12T15:48:16.2351102Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: e34a02118bda61dadaf8fa312770381bebd9a25519d4f866210988961e056046 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.9.3.tgz + version: 0.9.3 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-09-07T14:23:01.588705429Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 492f2cea68472005d8ad714c44cba027c8c978a1bc068eeb1ab90906da558ca1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.9.2.tgz + version: 0.9.2 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.2-debian-11-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-09-11T11:18:51.133511615Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 58ae84402dbbb30141214abd1b752075518dd01d76738b36fd3c79d1f391193f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.9.1.tgz + version: 0.9.1 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.2-debian-11-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-08-22T14:04:51.478616365Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 31448c2d7369d3848aea89e1c40986432490a832f499c4acf0cc7ff473fb8c3a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.9.0.tgz + version: 0.9.0 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.2-debian-11-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-08-21T14:40:05.951760398Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 8e70f1730e38779f98d521c86216948b94f05c39c8246711a4eaedafd278498b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.11.tgz + version: 0.8.11 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.2-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-08-17T17:10:26.958648539Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 89daec63c928ef2aff7ad1cc90d9b8b09912226f1334dda0241d436591ba0455 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.10.tgz + version: 0.8.10 + - annotations: + category: Infrastructure + images: | + - name: haproxy + image: docker.io/bitnami/haproxy:2.8.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-08-09T17:49:59.818371046Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 89955c538aedc2d171c26c2010dd7baef96843cdeae3130f2fdeb27b71e7990d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.9.tgz + version: 0.8.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-08-08T13:35:30.292753013Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: e1900bc91301762ff6933a3eae5758f338e1d358afd19a1391649daf93e875f0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.8.tgz + version: 0.8.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-07-27T16:34:28.886338134Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: b6a4196dc3ea7ed87f93ba88b5dbef5d1a560834d59e55f998c5ddcd74ce26d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.7.tgz + version: 0.8.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-07-25T13:08:39.4568594Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: a4665139900183065021a0ee90a7a51fa4a3df453f6f829667f13a56ded57e48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.6.tgz + version: 0.8.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-07-15T09:44:48.972700558Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 53a5a2625e5924a688da2e48fca97fac9436c2804639d49eef03b4a3c700a96b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.5.tgz + version: 0.8.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-07-03T18:01:23.705990383Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: d3696e36ce452c887e6a655acf7523cbb58be7e79ee94e28cb62530faff4c139 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.4.tgz + version: 0.8.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-06-14T16:43:54.73289904Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 6bd625fa918e8d22d39303c1b385f4d8f045446e43bbe34483f1dc06221e5d83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.3.tgz + version: 0.8.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-05-31T16:38:45.100300646Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 5471ed686e6fcb48493243f2dbf59731eb0f5c8f6bf5bfd471771f3403e51cdc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.2.tgz + version: 0.8.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.8 + created: "2023-05-21T17:07:56.014380012Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 779007d4fa2820522443ad7c13b2500286dca460a77ef9bbec2e737c455c4753 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.8.1.tgz + version: 0.8.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.8 + created: "2023-05-09T16:56:38.707485829Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 457b758e095e775fd32089e3722fb9ba7f1cd6791363211d063c794d9eca6b1f + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.7.7.tgz + version: 0.7.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.8 + created: "2023-05-09T15:04:04.181599666Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 84eb70f5e2c34fd8061c85bd2a8f20a538b0bc491ddd1824d0c5a0f9b8cf3dce + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.7.6.tgz + version: 0.7.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.8 + created: "2023-05-07T09:46:52.704673966Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: c62552543ddac7e71ea12f50d88425eb16df8fb922ddf1c482f2bad73c838207 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.7.5.tgz + version: 0.7.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.8 + created: "2023-05-05T16:32:08.122520163Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: be4ea041e158f5b1fa7f0a884b5de279724f58752fbbba2faa2f7db1edb9f685 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.7.4.tgz + version: 0.7.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.8 + created: "2023-05-05T13:38:37.955628102Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 1be734b5dd1d1f37f912a305fdbf277e8239c04dd7046e187efbdcc1298e94f8 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.7.3.tgz + version: 0.7.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.8 + created: "2023-05-02T13:41:51.386859061Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 6d1f59e556ab5baea97ac450faaa4b64ae7a8f7b3b4a9798a7563459da84741a + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.7.2.tgz + version: 0.7.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.7 + created: "2023-04-28T16:27:11.982271966Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 5d5a9791d513e6c7123b71144ba22ebab28ff72189d751c06721117bb2d2244d + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.7.1.tgz + version: 0.7.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2023-04-01T12:17:27.757602697Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 7fc590e8370d8e50a752b73b706736f769f62e5a37233e0f5f5b49d3a052f868 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.16.tgz + version: 0.6.16 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2023-03-28T13:32:21.64732954Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 4cdf79de1226ea65e5a5d818b3a606591f8d1525003e926631e7edc680299874 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.15.tgz + version: 0.6.15 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2023-03-19T00:18:02.74752986Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: b9312455662e7e4a662ff7ae4ee4def7e96dd6e06b4ca187bc476fff0307cd91 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.14.tgz + version: 0.6.14 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-03-10T20:13:47.161230829Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 1d9edce4e5c6a1ce9cb4de195855afb3d6a333f555b9c4ef084b618a9f953f2c + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.13.tgz + version: 0.6.13 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-03-10T16:37:01.412887767Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: b231bd1bcc2c589e70884763d63f766fb99063635409383a7b146e8de349fa60 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.12.tgz + version: 0.6.12 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-03-01T09:57:11.926468374Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 1c7798b584d17c9f2055d9a6227498bee676530ea287fbb3942d16ce14b361e6 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.11.tgz + version: 0.6.11 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-02-21T13:54:21.053376813Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: cbdf0832c7f853dfc7e6d3cc0ee7cee38a0c0454fdd00ba8e5f0ea9f264c26d7 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.10.tgz + version: 0.6.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-02-17T16:44:08.925303483Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: ae3078060cd78e5cdc7787c402798c233da3caa97c9582f3fda39294e9e61812 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.9.tgz + version: 0.6.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-02-14T21:55:21.797085169Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 4c3bd31b6c38da17c56d5224e56ae1c15788a77c80922dc8bf75317a89883aac + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.8.tgz + version: 0.6.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-01-20T14:08:15.230801653Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 25350f77a9b8abb3ded5b4adc2cf8a1799d5a13aa7e7310b0b9d20e8a9716446 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.7.tgz + version: 0.6.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-01-18T19:48:44.085810452Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 22dd7378cbd16b77bc47a9e77b0bde3ecbedaebd1e0b988fbe9b2e2e2f15aa14 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.6.tgz + version: 0.6.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.7.1 + created: "2022-12-19T19:20:21.844001872Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 131b7d667d24d29c55f8394e6d15ee1ffa14ffaf310221c45a844722d883bc6d + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.5.tgz + version: 0.6.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.7.0 + created: "2022-12-01T17:41:23.365887207Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 65b4b0b7e4ecdadfc92629039db9a455580748caeb5ca3fb9f4904bcf8196622 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.4.tgz + version: 0.6.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.6 + created: "2022-11-22T10:20:50.232194721Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 80b7617de60e24e75de9ddf70b165276ad42ac422e7539f5b9b0aa3cf273b4de + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.3.tgz + version: 0.6.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.6 + created: "2022-10-26T10:04:09.352676542Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 45eb6cd8481eb1e18e97e270be6ad4b8ea0a83008174a47f86b94e36827c9e56 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.2.tgz + version: 0.6.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.6 + created: "2022-10-23T10:12:07.162123711Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 4a649094a9e51048c04b04669fd4a8fa601c352e09b8275e2c4afb2aceba9e12 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.1.tgz + version: 0.6.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.6 + created: "2022-10-21T11:09:34.77320163Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 9860c9b63a1dea3c729084cc16296f057815f49db06e8aa70f72b199b0763e59 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.6.0.tgz + version: 0.6.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.6 + created: "2022-09-23T11:40:50.676672098Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 3d6b9e8985d66f593e9514b90b69ec20a2b1ef2b499477d0bf646e648546f865 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.5.5.tgz + version: 0.5.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.5 + created: "2022-09-20T14:10:21.417970007Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 620d75a65e8004b2d448556baffa9d7c2cab9707f512842c9e55e9632e6280b0 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.5.4.tgz + version: 0.5.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.5 + created: "2022-09-04T01:03:24.758659281Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: 30560407fa11bd2108136cb0eb69e162673290472faf3dc1f65089fec7a1e9d4 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.5.3.tgz + version: 0.5.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.4 + created: "2022-08-23T23:22:08.598844441Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:22757d26e2374706ba946e68b5bf82d657aaa10eb5dff24460dc3e59ea9282dc + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.5.2.tgz + version: 0.5.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.4 + created: "2022-08-23T01:51:41.142614403Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:dbd68822afaa5960e8ba66502f8dfe7e1ed60650a056d27cd168928f580559d5 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.5.1.tgz + version: 0.5.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.3 + created: "2022-08-22T15:12:04.335018569Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:0db2ec16eb784ebb5224d92a4a2e08e62f0fdc42db882c6b6e9373b8f092223a + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.5.0.tgz + version: 0.5.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.3 + created: "2022-08-22T08:48:45.710909068Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:b072e1e4230b987594ac5aa048aef13347ed66d42f0bbf6cbd458e6e84d8b49e + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.4.1.tgz + version: 0.4.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-08-09T08:32:16.274478497Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:0c21aaaa3ad77b7f2a0efb9d6d689f50a12b03d9a8fbac4b6eace531bad6ba7c + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.34.tgz + version: 0.3.34 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-08-04T21:58:24.682940786Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:16613656ae28c19ac72720082bb28fc9190654622e1799ac6b30a3957a1af71f + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.33.tgz + version: 0.3.33 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-08-03T21:49:01.849892647Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:1c9e0a6971c53714c4f3cdd419af7ecbac3722e1b28c42eef21b4def30ac255a + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.32.tgz + version: 0.3.32 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-08-02T08:32:39.187960837Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:79ba3690d8bfd78e65413021a22131db56fe91e7f2f81410e45d858fcfde84c5 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.31.tgz + version: 0.3.31 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-07-23T02:29:16.457384742Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:51579b158cd41a40682cd73a18305bbc3acd6e244091d92231c6ecdc663a8b1b + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/bitnami-docker-haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.30.tgz + version: 0.3.30 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-07-01T09:39:34.109513533Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:6d5c4466120a233f0ee85546b8441f6058051f834ca535ad0b0032d39868aafc + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/bitnami-docker-haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.29.tgz + version: 0.3.29 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-06-21T23:36:52.414382212Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:35a7e700b89fe01f21bdda443827740298620189aa2c05ed4c2fd5291f475d9a + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/bitnami-docker-haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.28.tgz + version: 0.3.28 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-06-10T22:23:14.727339713Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:6463a554379dffa701802d955d0905923b804405026d9986ec3dcd7de66a2e41 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/bitnami-docker-haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.27.tgz + version: 0.3.27 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-06-06T20:51:41.84805795Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:2ade60fe6b5d235be16c41c43eedab091dcf40876629b6d8f24d11c077fe657a + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/bitnami-docker-haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.26.tgz + version: 0.3.26 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-06-01T21:01:24.719642809Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:6ec4699b3bb8b3ae233b3051aaf32299d9ad0d787c42bb96841cda58e8454462 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy + sources: + - https://github.com/bitnami/bitnami-docker-haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.25.tgz + version: 0.3.25 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-06-01T00:10:39.845328984Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a TCP proxy and a HTTP reverse proxy. It supports SSL + termination and offloading, TCP and HTTP normalization, traffic regulation, + caching and protection against DDoS attacks. + digest: sha256:f4615dca2422c170f2e94451ac3fc57d5096f25139c8c1a7dacc61778aaadf42 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: haproxy + sources: + - https://github.com/bitnami/bitnami-docker-haproxy + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-0.3.24.tgz + version: 0.3.24 + haproxy-intel: + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-01-12T12:34:55.505652886Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + deprecated: true + description: DEPRECATED HAProxy for Intel is a high-performance, open-source load + balancer and reverse proxy for TCP and HTTP applications. This image is optimized + with Intel(R) QuickAssist Technology OpenSSL* Engine (QAT_Engine). + digest: 5842ffd85478b0c22d9b6943d36f856e7942d305b8b1c7d19dccfebdb2b58b99 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.11.tgz + version: 0.2.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.7.1 + created: "2022-12-19T19:28:48.247474681Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 98a09d60d70ee74f187f71868ca102948cd66d7252eb3cbe6fefc0089e44a673 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.10.tgz + version: 0.2.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.7.0 + created: "2022-12-02T08:13:20.506395069Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: cc2572b90154c32a6a4789623d82ab038bc80593deb527b47e457e53a64b49cf + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.9.tgz + version: 0.2.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.6 + created: "2022-11-22T10:36:41.692643968Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 5450c47277f9983374f58c74585d1e6f698a242720ca61fad629f9d286dd0307 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.8.tgz + version: 0.2.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.6 + created: "2022-10-23T10:26:45.474667771Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 12de39bf93401904995c7ba09e3ade52998dbaf94e80aafda7332068cc432da4 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.7.tgz + version: 0.2.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.6 + created: "2022-09-23T11:38:04.21692262Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 238e7d29379d6b88e8be91d278737d51e4bcc6043746c4d6363d3409c2e5e91d + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.6.tgz + version: 0.2.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.5 + created: "2022-09-04T17:18:04.918875676Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 6afdc16e3b05b26b48d82b15b3ba7d1d6a5bca1d6872eb7714101c450c7ec37b + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.5.tgz + version: 0.2.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.4 + created: "2022-08-23T23:49:01.81748379Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: ea8b71f3e01ab1bb52fd66c0cd173638cf946f1fb1a0a36d1193610a4f463d63 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.4.tgz + version: 0.2.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.4 + created: "2022-08-23T23:26:19.102185142Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: ddc2bd24890f338d7bd7dc366041f1c0b964d4a3ee5f958a2f7f7a28a83dcf35 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.3.tgz + version: 0.2.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.4 + created: "2022-08-23T00:07:02.626244225Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 09664d1f02a27c72306d9e311aad17e7ddf9c34dfa6406b167bea89ebee3cb80 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.2.tgz + version: 0.2.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.3 + created: "2022-08-22T17:20:04.966763075Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 4da27f41cacd5840aa340bc70a064f3ad2d90a3c551e3831494f0cae645c6c2a + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.1.tgz + version: 0.2.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.3 + created: "2022-08-22T12:22:27.28507303Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 38902fe7ea85533c3ce2352403fcb00f69557aeb64867f3871592251115e0c3a + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.2.0.tgz + version: 0.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.3 + created: "2022-08-19T20:56:33.487790346Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 0ba951ac5c8f1ea78378961daf675c5cf269d12c29d8dc444b6e1e792cf71de9 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.13.tgz + version: 0.1.13 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-08-09T07:59:16.948053312Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 533986dfa5f2d106331a5b7e8523ebbfa05485ee3c479fd240d2f802f55d3147 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.12.tgz + version: 0.1.12 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-08-04T16:49:00.287501224Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: bdfae589a04269a2bafe061fe18a6d04bbe8f4dd86df5ebb01eaebde12f0e396 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.11.tgz + version: 0.1.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-08-03T08:24:28.378356289Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 77cb2317c6f0bb1e046818d8d00f644c2f1e7a01298a8e3035f7295e526e4fff + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.10.tgz + version: 0.1.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-07-23T02:03:56.678392342Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 53118e5edbfdb29826eea06e9ceebbb39d2c7f0263ad790a1c1d60f20ea6a1e5 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/bitnami-docker-haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.9.tgz + version: 0.1.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-06-30T10:41:42.426049145Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 807ba4fcdd11f4b2fa18466dfcf8f5a2cce8680a6893fd60c4c402723d4c5d37 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/bitnami-docker-haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.8.tgz + version: 0.1.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-06-21T23:08:05.609723099Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 69f7d50aa4cef06361c8899546feafe765b2ae080d6f7177ec6b4506c02e2b10 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/bitnami-docker-haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.7.tgz + version: 0.1.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-06-10T22:24:39.824940691Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: b79fb001010cd398f5153b047cb2a13647574ef619cafb8c27a9abe751c4480f + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/bitnami-docker-haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.6.tgz + version: 0.1.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-06-07T09:37:18.122164917Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 13dd74c2200eb2b3c880d957bb901d4926572f0a1e7c465b237bbac933863729 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/bitnami-docker-haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.5.tgz + version: 0.1.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-06-01T13:15:38.925159086Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: a2f9f29d33c969f02d9149067b39dbabfb35357657c11a147bc89df2c7c78629 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: haproxy-intel + sources: + - https://github.com/bitnami/bitnami-docker-haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.4.tgz + version: 0.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-06-01T06:23:20.235807773Z" + dependencies: + - name: haproxy + repository: https://charts.bitnami.com/bitnami + version: 0.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: HAProxy is a high-performance, open-source load balancer and reverse + proxy for TCP and HTTP applications. This image is optimized with Intel(R) QuickAssist + Technology OpenSSL* Engine (QAT_Engine). + digest: 74c52791659c2f04581a68333c6daec8be11b7a036129181833e875c36f8a7f7 + home: https://www.haproxy.org/ + icon: https://bitnami.com/assets/stacks/haproxy/img/haproxy-stack-220x234.png + keywords: + - haproxy + - proxy + - infrastructure + - intel + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: haproxy-intel + sources: + - https://github.com/bitnami/bitnami-docker-haproxy-intel + - https://github.com/haproxytech/haproxy + urls: + - https://charts.bitnami.com/bitnami/haproxy-intel-0.1.3.tgz + version: 0.1.3 + harbor: + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r9 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r8 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r8 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r9 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r8 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r8 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r8 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-08-08T12:03:50.033622488Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: eede70150f17bdde8f12af266ab23da4f067ea728c8e67aa8f3188693cfef60d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.12.tgz + version: 22.0.12 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r9 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r8 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r8 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r9 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r8 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r8 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r8 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-08-08T10:17:37.967255446Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: fa5827301ed47cf8c12a8b54fed0ddafcc44faa960a43122ae18dd9f7e87ca87 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.11.tgz + version: 22.0.11 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r7 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r6 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r6 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r7 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r7 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r6 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-30T11:06:37.911383629Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 7918d73890fa318b9441785df65d7adf44ef9011f23d40a9f25934b9c04ecf84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.10.tgz + version: 22.0.10 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r7 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r6 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r6 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r7 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r6 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r6 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-30T10:34:50.020293152Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 36d7679676cb21dd4629c85a72870c7f00df16522b34b418e2d21103ddc69b52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.9.tgz + version: 22.0.9 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r6 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r6 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r7 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r5 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r6 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-25T05:13:56.406209168Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 6763a6f80aace243ddb9761cac21df2d864604beb05456adb6a0cc5b6d6c9911 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.8.tgz + version: 22.0.8 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r6 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r6 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r4 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r5 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-24T06:34:10.301980258Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: be435d0b4755693404aa15bf4e081e213f52ce208fa01f19b720d4a3e78d37f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.7.tgz + version: 22.0.7 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r5 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r4 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r4 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r3 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r4 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-24T02:09:44.561601984Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 0bd2b0777e234d605fc5095d688be45cd54f212a457abf1d228b990349d858f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.6.tgz + version: 22.0.6 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r3 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r2 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r2 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r2 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r3 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-19T08:47:06.277216391Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 30ac1df5fe37e11435b088ab91182b4b2757aa1a1768662a83e9a17ca63cb772 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.5.tgz + version: 22.0.5 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r3 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r2 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r2 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r2 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r3 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-16T14:36:51.738915719Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 6eb7d9ee780b574d85e62e96d3bb5d4b2e0dae695828ae684a75445c9e1df041 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.4.tgz + version: 22.0.4 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r3 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r2 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r2 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r2 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r3 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-15T12:19:07.305705262Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: bfb6c99656311d13ae71be9fb60de0ac8e33eb9fce31836e346a3e5a2c7d8485 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.3.tgz + version: 22.0.3 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r3 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r2 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r2 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r2 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r3 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-12T15:33:27.170867624Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: f206adf791d79cd5e986044ffd1b56d7ebff9c132c4a1132433b5254cc64561f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.2.tgz + version: 22.0.2 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r3 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r2 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r2 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r2 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r3 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-11T08:34:27.011986094Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: c3c7cdf5c09c7efd17b91a587e55f8c9d496af85de94cd7dc410d9c770ca8030 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.1.tgz + version: 22.0.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r3 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r2 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r2 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r2 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r3 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-09T07:41:48.062162518Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: e5396657700c6d984f60585de578cab01ab3dadd16880a281374bf92369dbc7e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-22.0.0.tgz + version: 22.0.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r3 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r2 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r2 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r2 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r3 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-03T08:12:02.022988406Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: e38791924ed04549270e0e231541f15f994a205daf2a4e9dc360946111308bab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.4.7.tgz + version: 21.4.7 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r1 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-06-18T14:26:47.344457968Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 384528d9bd3397506653bfb357213b8d19125903187150251a0900bd729cca39 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.4.6.tgz + version: 21.4.6 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r1 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-06-17T12:41:33.225718717Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: ea78460efbd3e0c97b53b9bb625e9c5a090f1556b7faf07938dfacc27b7d9dfa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.4.5.tgz + version: 21.4.5 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r1 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-06-12T12:45:20.973418839Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 2f380818090e9bc3770f72514c81daa40d6c13a0063aa6556489bb7382c26542 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.4.4.tgz + version: 21.4.4 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.11.0-debian-12-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.11.0-debian-12-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.11.0-debian-12-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.11.0-debian-12-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.11.0-debian-12-r0 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.11.0-debian-12-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.11.0-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-06-10T16:56:12.618815722Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 565341f9d2e749d28b609501721faf31a7ebcbdb55471e865ddcda9f158cbb14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.4.3.tgz + version: 21.4.3 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r4 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r4 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r5 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-06-05T09:44:10.621488584Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: be2a55045247e7307827c75ec0fab37a7f49b86f9010da4a2b9e28470cd853da + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.4.1.tgz + version: 21.4.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r4 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r4 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r5 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-05-29T14:02:36.242328628Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 44b6407a788189d295bd33b952a830e5f05b461c84cc166785ca6d53b49f0af5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.4.0.tgz + version: 21.4.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r4 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r4 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r5 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-05-29T06:25:13.14011853Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 120107b40fe72fc6792de1f53b0ac3437dd2e26f149c2b88bc5dd0ea1d8e0c34 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.3.0.tgz + version: 21.3.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r4 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r4 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r5 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-05-24T07:56:51.902637842Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 1f857294a0eb317448fd7fb5f5eec4116cfd1010ccd792fb52965adb1c589975 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.2.1.tgz + version: 21.2.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r4 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r4 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r5 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-05-21T14:23:27.373102151Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: d6e43325addccfcbbea5b54fb836476fc8a9509b1e8bbcaab76a300d241cb25e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.2.0.tgz + version: 21.2.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r4 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r4 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r5 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-05-18T17:01:15.864095094Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: a508e2775a2c27adef36e19e4912a62c354a23e1f215b44d0f6709bb330ecc01 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.1.6.tgz + version: 21.1.6 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r4 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r4 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r5 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-05-14T05:53:12.703051706Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 32cf8105544170d56ded5d83387d53b91f3e3dfc93f9d4e27cf60439ac33ca4f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.1.5.tgz + version: 21.1.5 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r4 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r4 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r4 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r4 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r3 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r4 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-05-13T15:28:59.789992112Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 1ad3d505125b59d45708121793d38785aedc72d003ded343ab22c2fb19617667 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.1.4.tgz + version: 21.1.4 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r4 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r4 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r4 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r4 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r4 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + - name: postgresql + image: docker.io/bitnami/postgresql:13.15.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-05-13T14:02:39.65035749Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: bf36d6ec57876cdd278310728592bfd956cfdd9c7530e339ed629e3059d967be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.1.3.tgz + version: 21.1.3 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r1 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r1 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r1 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r1 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r1 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-04-26T06:01:07.401297752Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: de7bd641b2631e5315d94536f3dda97a02e7735a61bcd348aba02df89a8467db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.1.2.tgz + version: 21.1.2 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.2-debian-12-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.2-debian-12-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.2-debian-12-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.2-debian-12-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.2-debian-12-r0 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.2-debian-12-r0 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.2-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.2 + created: "2024-04-10T20:05:24.405184824Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: a8c2332ab0370ea40eafdca9274173244b7ed0787a3dd5d1fc783416f86094d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.1.1.tgz + version: 21.1.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.1-debian-12-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.1-debian-12-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.1-debian-12-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.1-debian-12-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.1-debian-12-r0 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.1-debian-12-r0 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.1-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-04-05T10:31:58.690134662Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: c47a0eaeaf6144d5c7980635b00df570e54f3b259683439f85323c588088a9e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.1.0.tgz + version: 21.1.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.1-debian-12-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.1-debian-12-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.1-debian-12-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.1-debian-12-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.1-debian-12-r0 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.1-debian-12-r0 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.1-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-04-02T08:28:53.610138983Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 50a8a54f625bd7940cd9c62e2720a7815bd59bc7209f15ba8666f36467d5b5f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-21.0.0.tgz + version: 21.0.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.1-debian-12-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.1-debian-12-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.1-debian-12-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.1-debian-12-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.1-debian-12-r0 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.1-debian-12-r0 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.1-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-03-18T14:22:04.881402044Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 181ae1994e29338d9bfc4f52535daf856c47fb9ceabe48eed60e3c8e860197fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-20.1.3.tgz + version: 20.1.3 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-12-r14 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-12-r11 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-12-r11 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-12-r12 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-12-r8 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-12-r12 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-12-r11 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-03-13T11:13:01.55326727Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 28a0905e04e80b5267b2f783f19fb8fcfe2378307897e89551120ab2f5ef9cfd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-20.1.2.tgz + version: 20.1.2 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-12-r14 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-12-r11 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-12-r11 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-12-r12 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-12-r8 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-12-r12 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-12-r11 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-03-08T16:15:40.074147338Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 0db66a0043ea63bf90737917c69205e540dd6b447ae6859b9545e8602b5f7c9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-20.1.1.tgz + version: 20.1.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-12-r13 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-12-r10 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-12-r10 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-12-r11 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-12-r8 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-12-r11 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-12-r10 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-03-06T09:12:40.074578589Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: c85718f8d9db5ec9b3bcb8bd20cab93db864e5a6da9a1d5769c91f448be94448 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-20.1.0.tgz + version: 20.1.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-12-r13 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-12-r10 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-12-r10 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-12-r11 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-12-r8 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-12-r11 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-12-r10 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-03-04T10:36:27.838468161Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: e1fe9832af6e654a5d1d966bbb770720ffbc315d50fe6af1e16930c2a3f4a2ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-20.0.0.tgz + version: 20.0.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-12-r13 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-12-r10 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-12-r10 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-12-r11 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-12-r8 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-12-r11 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-12-r10 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-27T11:01:36.818795819Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 3ec34955dabb46169cd56335365e44501d2babf59dd50abae89338aa22ef6dc9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.9.0.tgz + version: 19.9.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-12-r13 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-12-r10 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-12-r10 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-12-r11 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-12-r8 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-12-r11 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-12-r10 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-21T17:47:03.300992092Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: c9287a4b9ef27e261375e4f7226ca93ab7fe4ef98ca5d80c4035aac876782922 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.8.2.tgz + version: 19.8.2 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-12-r12 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-12-r9 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-12-r9 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-12-r10 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-12-r7 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-12-r10 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-12-r9 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + - name: postgresql + image: docker.io/bitnami/postgresql:13.14.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-21T13:07:24.153046321Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 1d5c956ccbb5733a34f853829faab346eeb4cc263208593613d705844f1faacd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.8.1.tgz + version: 19.8.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-11-r8 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-11-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-11-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-11-r6 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-11-r6 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-11-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-11-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-16T10:06:00.222140315Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 138162a78709c22e04732ed8cbf0afc9295812c3c8c00ab2d1ef4840b228bb83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.7.0.tgz + version: 19.7.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-11-r8 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-11-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-11-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-11-r6 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-11-r6 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-11-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-11-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-12T10:03:39.577942619Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: d100b5d6e65f1141e09f1f1a8bb60abeab257a92f46dab74b44afb3e892b21a6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.6.0.tgz + version: 19.6.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-11-r8 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-11-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-11-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-11-r6 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-11-r6 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-11-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-11-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-05T11:57:53.06394098Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 6e47ff51925bc86f2dd1c395e08b2502bb9b5fc1f2b0f8979b776a98ce8df5a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.5.0.tgz + version: 19.5.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-11-r8 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-11-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-11-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-11-r6 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-11-r6 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-11-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-11-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-02-03T07:58:11.387929573Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 2d5a486a496a85d7923871e85df0b957d0de9d275935eac92b22ab7e38922527 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.4.2.tgz + version: 19.4.2 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-11-r1 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-11-r1 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-11-r1 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-11-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-11-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-11-r1 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-01-26T08:32:02.30494215Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: ab728a469862e0e1826902762ccb11a06b66e393a3f622c0b2b4223dce4d4bcf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.4.1.tgz + version: 19.4.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-11-r1 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-11-r1 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-11-r1 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-11-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-11-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-11-r1 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-01-22T14:06:16.164474532Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 470b181bf151efc4f7e79b0aeccb55076bd0bcb1ce8fb6a843d16bc46fed9824 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.4.0.tgz + version: 19.4.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-11-r1 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-11-r1 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-11-r1 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-11-r2 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-11-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-11-r1 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-01-18T08:36:31.041936998Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: dd48714a51e1b6a0826eb0df436bd25b2bece52de843dfcaf698dd50a8e24994 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.3.1.tgz + version: 19.3.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-11-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-11-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-11-r0 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-11-r0 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-11-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-01-17T16:37:01.699599578Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 9b27e767205826dd38a8ee764431e1357ac6f0a8365252da2758a06269c185c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.3.0.tgz + version: 19.3.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-11-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-11-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-11-r0 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-11-r0 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-11-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-12-20T18:51:40.945553423Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 2a855c475d4e898f9ef18dff49bf3b52f5b88da9795bdb4cfee6d1b504a02176 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.2.3.tgz + version: 19.2.3 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.10.0-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.10.0-debian-11-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.10.0-debian-11-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.10.0-debian-11-r0 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.10.0-debian-11-r0 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.10.0-debian-11-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.10.0-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-12-20T18:19:16.216384167Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 6ad3c5552dd39a27b902d75cd43892ce2e8ec0f13c5ef7ab0b6dacaa8ed680a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.2.2.tgz + version: 19.2.2 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.1-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.1-debian-11-r1 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.1-debian-11-r1 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.1-debian-11-r1 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.1-debian-11-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.1-debian-11-r1 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.1-debian-11-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-11-21T18:30:51.370700341Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: e21fad9252386a73a9597b3bb1cfbf2bf331787a78c575b3c2ef5f1644980f3b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.2.1.tgz + version: 19.2.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.1-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.1-debian-11-r1 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.1-debian-11-r1 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.1-debian-11-r1 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.1-debian-11-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.1-debian-11-r1 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.1-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-11-20T09:22:49.677394223Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 965f991bfc8c8a1a1317ec258af235733e61b955fc8fd8a9fd37e7ff3f06383e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.2.0.tgz + version: 19.2.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.1-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.1-debian-11-r1 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.1-debian-11-r1 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.1-debian-11-r1 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.1-debian-11-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.1-debian-11-r1 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.1-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-11-15T23:53:40.836339203Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: eba68b5e397011b414e3cecdd5add161dff0fe0594ccfd27bc7a07450db5e972 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.1.2.tgz + version: 19.1.2 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.1-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.1-debian-11-r1 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.1-debian-11-r1 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.1-debian-11-r1 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.1-debian-11-r1 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.1-debian-11-r1 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.1-debian-11-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + - name: postgresql + image: docker.io/bitnami/postgresql:13.13.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-11-10T14:07:29.179680511Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: c4f65baa470061d593881b2b7a336d4a7783c93b0c820e66437cefb168f8a902 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.1.1.tgz + version: 19.1.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r27 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r24 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r24 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r26 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r36 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r24 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r37 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-10-31T14:39:35.548319744Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: be15342debc976fe14fd88824aa2ee80a3dd45bd1b87646de0032cbd56a0de5f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.1.0.tgz + version: 19.1.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r27 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r24 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r24 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r26 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r36 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r24 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r37 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-10-12T15:14:15.883878577Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 46929b6e0f4ea58806e9464862264eb685cefa34a5917455d18294d85a4a74ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.0.5.tgz + version: 19.0.5 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r24 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r21 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r21 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r22 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r33 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r21 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r35 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r46 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r56 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-10-10T14:48:04.779522571Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: dc934550ba4c77b1566fb8a2f41ffa388c1501d8d68f794ae9a2c1d62f796813 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.0.4.tgz + version: 19.0.4 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r24 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r21 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r21 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r22 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r33 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r21 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r35 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r46 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r56 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-10-10T02:28:56.107414186Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 59d98f6b01289174223772cbfbf1ce8cf135afa59df39ec1ca8cdcce144aee51 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.0.3.tgz + version: 19.0.3 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r24 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r21 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r21 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r22 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r33 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r21 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r35 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r46 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r55 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-10-10T01:52:07.246002378Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: c6a2f79cfcc8ff2e1db6820afd789d30acfb86ede7af425d48b21088bbdac638 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.0.2.tgz + version: 19.0.2 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r24 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r21 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r21 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r22 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r33 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r21 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r35 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r45 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r55 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-10-09T23:33:49.443323493Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 6ed1fee827c71f83113214dd0335de3a5cdd6c2f686786e3da95ddbf15a05a50 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.0.1.tgz + version: 19.0.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r14 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r14 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r14 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r11 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r26 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r11 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r26 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r37 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r46 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-09-29T11:49:09.125974336Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 9595d03c51fe70d415148ee704c1e53d49a1d51f1669f4b32ad439fff8db23a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-19.0.0.tgz + version: 19.0.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r14 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r14 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r14 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r11 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r26 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r11 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r26 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r37 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r46 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-09-26T17:54:29.386062353Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 77770e399fc258a53f8225bebf08d171e232d719611a8ba13a9bb8585b291b57 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-18.0.3.tgz + version: 18.0.3 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r14 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r11 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r11 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r11 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r26 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r11 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r26 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r37 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r46 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-09-26T17:24:05.393496131Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: c381ea0079222f9d3b293bab8770be0797e12c9cf74f7c57fe6065210bd65806 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-18.0.2.tgz + version: 18.0.2 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r8 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r5 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r17 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r21 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-09-19T16:44:53.611413198Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 3721395872c87c72e9392ba0260197ad795220bfede7db59c42989d233c20c15 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-18.0.1.tgz + version: 18.0.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r8 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r5 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r17 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r17 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r69 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-09-19T14:29:59.620400837Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 881bc73d11d5148cfb5d88a3ca955818f575102aaec2554e53fe2611f3fccc4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-18.0.0.tgz + version: 18.0.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r8 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r5 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r17 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r17 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r69 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-09-19T10:22:59.784848381Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: e9ec952454beffc75c700139347f0cb40d3c477282c61e9ec02d9b2c9078bdfc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-17.1.3.tgz + version: 17.1.3 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.9.0-debian-11-r8 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.9.0-debian-11-r5 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.9.0-debian-11-r5 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.9.0-debian-11-r5 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.9.0-debian-11-r17 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.9.0-debian-11-r5 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.9.0-debian-11-r17 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r69 + - name: postgresql + image: docker.io/bitnami/postgresql:13.12.0-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-09-18T16:01:06.146767954Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 64cec6a287f580586e594b2bc307da2ca87a9fcbed2ccd9094625dcb3b62e0eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-17.1.2.tgz + version: 17.1.2 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.8.3-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.8.3-debian-11-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.8.3-debian-11-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.8.3-debian-11-r0 + - name: harbor-notary-server + image: docker.io/bitnami/harbor-notary-server:2.8.3-debian-11-r6 + - name: harbor-notary-signer + image: docker.io/bitnami/harbor-notary-signer:2.8.3-debian-11-r6 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.8.3-debian-11-r8 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.8.3-debian-11-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.8.3-debian-11-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.1-debian-11-r48 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + - name: postgresql + image: docker.io/bitnami/postgresql:13.11.0-debian-11-r80 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-09-08T13:12:07.652112575Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 5ffa10555aa1469c6d1d7b94588c5961ea3ff6836347beba2e2bee84a63c9ad1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-17.1.1.tgz + version: 17.1.1 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.8.3-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.8.3-debian-11-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.8.3-debian-11-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.8.3-debian-11-r0 + - name: harbor-notary-server + image: docker.io/bitnami/harbor-notary-server:2.8.3-debian-11-r6 + - name: harbor-notary-signer + image: docker.io/bitnami/harbor-notary-signer:2.8.3-debian-11-r6 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.8.3-debian-11-r8 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.8.3-debian-11-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.8.3-debian-11-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.1-debian-11-r48 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + - name: postgresql + image: docker.io/bitnami/postgresql:13.11.0-debian-11-r80 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-08-29T07:59:22.056125475Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 793723889faaa75c6ec3d8ebf8d7d2789e1bef907edc17569e47c2de1557276a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-17.1.0.tgz + version: 17.1.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.8.3-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.8.3-debian-11-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.8.3-debian-11-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.8.3-debian-11-r0 + - name: harbor-notary-server + image: docker.io/bitnami/harbor-notary-server:2.8.3-debian-11-r6 + - name: harbor-notary-signer + image: docker.io/bitnami/harbor-notary-signer:2.8.3-debian-11-r6 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.8.3-debian-11-r8 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.8.3-debian-11-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.8.3-debian-11-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.1-debian-11-r48 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + - name: postgresql + image: docker.io/bitnami/postgresql:13.11.0-debian-11-r80 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-08-28T08:01:47.304596256Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 4bc7add2e6096b38575a834f1ff8f5cc7196b5003aeefa1a65f0fbc0dcaaddcd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-17.0.0.tgz + version: 17.0.0 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.8.3-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.8.3-debian-11-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.8.3-debian-11-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.8.3-debian-11-r0 + - name: harbor-notary-server + image: docker.io/bitnami/harbor-notary-server:2.8.3-debian-11-r6 + - name: harbor-notary-signer + image: docker.io/bitnami/harbor-notary-signer:2.8.3-debian-11-r6 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.8.3-debian-11-r8 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.8.3-debian-11-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.8.3-debian-11-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.1-debian-11-r48 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + - name: postgresql + image: docker.io/bitnami/postgresql:13.11.0-debian-11-r80 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-08-09T12:22:22.885467933Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: b2da0e88ecb231f972026c6f74627a07a9e188274d88767148a99f9b1887c848 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.7.4.tgz + version: 16.7.4 + - annotations: + category: Infrastructure + images: | + - name: harbor-adapter-trivy + image: docker.io/bitnami/harbor-adapter-trivy:2.8.3-debian-11-r0 + - name: harbor-core + image: docker.io/bitnami/harbor-core:2.8.3-debian-11-r0 + - name: harbor-exporter + image: docker.io/bitnami/harbor-exporter:2.8.3-debian-11-r0 + - name: harbor-jobservice + image: docker.io/bitnami/harbor-jobservice:2.8.3-debian-11-r0 + - name: harbor-notary-server + image: docker.io/bitnami/harbor-notary-server:2.8.3-debian-11-r6 + - name: harbor-notary-signer + image: docker.io/bitnami/harbor-notary-signer:2.8.3-debian-11-r6 + - name: harbor-registry + image: docker.io/bitnami/harbor-registry:2.8.3-debian-11-r8 + - name: harbor-registryctl + image: docker.io/bitnami/harbor-registryctl:2.8.3-debian-11-r0 + - name: harbor-portal + image: docker.io/bitnami/harbor-portal:2.8.3-debian-11-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.25.1-debian-11-r48 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + - name: postgresql + image: docker.io/bitnami/postgresql:13.11.0-debian-11-r80 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.3 + created: "2023-08-07T15:00:08.735302636Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 9f485ae87168c4f69f77954e404f293749b201757e51b765de4324ad06fec37b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.7.3.tgz + version: 16.7.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-07-25T20:47:53.875322579Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 0dc5d782d04596548f91d54a412013d844baabede2daa7ec9e201e9c80daf533 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.7.2.tgz + version: 16.7.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-07-15T09:28:48.126285431Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: b2e4693299b45fd20bf1152d736e8a28cbda6f69b0adcdd98228c5112a2e9edd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.7.1.tgz + version: 16.7.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-06-26T13:00:02.301570049Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 58d860ae0223f4a75280851d3414bbf2b1bc3de97d219776f928fcdc113f889c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.7.0.tgz + version: 16.7.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-06-22T13:07:54.9481534Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: c254835f9bf63fee6783dd07fecf3f355651f855f1a1c3585331afc6a91bf8c2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.6.8.tgz + version: 16.6.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-06-06T07:23:16.575045512Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: be1339dbc3b1b002a0b7e2e939857a897067a1653c6c4d357210cc194a688310 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.6.7.tgz + version: 16.6.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-05-23T12:48:47.813205188Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 75d6f9b2c75367dba7428979b30b6397a6b38264b876058fb9e992d2ec2e6abe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.6.6.tgz + version: 16.6.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-05-21T19:38:50.461462712Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 61db377dcd757c1caf5fbe3e89e64c61ccd0e111fa850554c12df465932ef47f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.6.5.tgz + version: 16.6.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-05-16T22:41:13.26669248Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 73f9a125ec0c84103083e11967e0296e5dffae1588a3e76d6376a2e9a6210e57 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.6.4.tgz + version: 16.6.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-05-15T19:43:03.635000726Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 2d6a47414ced03ef5b06cbf4bd72f968a024e05747043ac3e473c4024003a23a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.6.3.tgz + version: 16.6.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-05-12T19:09:18.825083254Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 30cb49a395b6d6d84dbfa7b62e3d8c9144c408d34ac5e7bb5c07b4ab99b20b41 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.6.2.tgz + version: 16.6.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-05-12T08:40:46.269797181Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: e95f2870fec54aca2e908e3d66b76ea9bf92b878c5fdea8bd5b0221e773a0a9e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/harbor + urls: + - https://charts.bitnami.com/bitnami/harbor-16.6.1.tgz + version: 16.6.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-05-09T15:32:46.709081368Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 803bfc74332394d91ab7638f442b427df6ae9f4334e48d97f64e200a95f907b7 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.5.3.tgz + version: 16.5.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-05-05T10:14:40.94335264Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: ae782024f0d2cbd99ceb436ad31ac2ac989421912e8d7844b1e00e510b386e0c + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.5.2.tgz + version: 16.5.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-04-29T14:54:45.881076825Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 5ba559701f8ec54c827fd749bc718a8760665af23e53f96945eb79cc9323b3ff + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.5.1.tgz + version: 16.5.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-04-06T14:08:09.028898833Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 5347ca7fe54a049c4969effa38b7f60ee6bc79651acd974a2a296df6448c795e + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.10.tgz + version: 16.4.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-04-04T09:14:19.041274086Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 86f06f42679196c7c0fe68d76fd4ce5903351d457db9eb29f7ae950a271e190a + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.9.tgz + version: 16.4.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-04-01T13:49:47.04422244Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: cbde631e10a932a8812e7a09ec4073c1637eaa26473fb98a8f82a36b9acd142b + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.8.tgz + version: 16.4.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-03-18T23:37:27.962651712Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 90bbfc5876ace4a21ab25a5df7390fa8ff59fadb5921dea3b3c727f40ab88f79 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.7.tgz + version: 16.4.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-03-17T16:28:37.21884601Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 0f461440ecba98a5a959fa7f2e13608180fe2f34df1f682e25fe2163227e0328 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.6.tgz + version: 16.4.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-03-08T18:01:19.063604256Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 7faff24ccaf14795874ff26c4a8a7a1d0347c89838f939403a8598ba193e4925 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.5.tgz + version: 16.4.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-03-07T12:58:41.20351302Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: e41e7ba8aa8728813a51640aab1adc38c23d3710d7e6fd634a81e47c61e12289 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.4.tgz + version: 16.4.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-03-06T13:28:48.947082398Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: fc211bc29c0362b12a2db266fe2a8ae24369ccc68ebe0e70b2a9aaaac1dff19c + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.3.tgz + version: 16.4.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-03-01T10:11:28.84232093Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 4d054c99d9539db06eeb7de9ecd462a001e34f221f27bdd7e27206bbf1aa9577 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.2.tgz + version: 16.4.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-02-22T09:31:20.280359684Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 219c894430f5487f9f1a47a6f770a00a939d55a4635d9091451f38fa831377b1 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.1.tgz + version: 16.4.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-02-21T15:41:31.21338846Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 513f7ce91f8a8f6e2d59085432f43673acb28fec4095212a3dc80437999a2cbb + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.4.0.tgz + version: 16.4.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-02-21T13:57:24.999607606Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 36441a3e950d049ae33725227a5090fd36795c4f94c551f8c9ca1f93f73dd123 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.3.7.tgz + version: 16.3.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-02-15T20:10:29.2659824Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 53b0b4a6767e7a13ccb79dab0f105ca7f3d99fc1f597e74c2424597bc36ce62b + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.3.6.tgz + version: 16.3.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-02-15T18:50:46.411590109Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 5b2a027cfbbfb7b6b67adcdbf3bf8382839a82ea871028ab86aa341ef9ce31fa + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.3.5.tgz + version: 16.3.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-02-12T13:23:10.715037336Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: d6a9ae2c0c7551868e2b2055fd8acc28e8c325c3e32e08d3e64a0c57965334eb + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.3.4.tgz + version: 16.3.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-02-09T08:10:43.758739614Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 8640f7174013ace0c01ce9aebea47a5cb542ef8180715a408ee3bd7c4f6d69d3 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.3.3.tgz + version: 16.3.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-01-20T10:22:08.392366965Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 735984a23f7ddd5bef2d310194492f3ec8f5e28682d368f810b12d2b270eb86f + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.3.1.tgz + version: 16.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-01-17T08:41:52.999834702Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 53d31154511fb77b74e285e172ec66f7b0d4de94b3f9531e643f481187bd82d1 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.3.0.tgz + version: 16.3.0 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-01-16T08:08:30.858931944Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: f9188142a6f5eab4a0244ad23e48dfdf57766dcbf1e9bf5a8e6869f5beb015d3 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.2.0.tgz + version: 16.2.0 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-01-13T13:59:50.080515031Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: ed38f650ab5091b5e52caa17c11a2983e2d8317a4dc94070cca6acad9eca69e4 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.1.4.tgz + version: 16.1.4 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-01-13T13:17:13.696043945Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: d78a2ac9445ce8aaa285b43d8f295d719129cb7d0b5f558472b0a3b508dfff98 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.1.3.tgz + version: 16.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.7.0 + created: "2022-12-22T11:26:48.28645435Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 7f1d02c2ab6d81671512c6b37e12bbb9f295412a7451e9afc7e14cfaf919df3d + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.1.2.tgz + version: 16.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.7.0 + created: "2022-12-19T05:57:30.27949978Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: f45a80fbba63308e39eb37fe804cc4827e731aea1ad19cc51b0601ff0fb8eca1 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.1.1.tgz + version: 16.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-12-15T12:34:59.868312918Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 7842c212bc929f55182229e84eb53f0526cfd0d845db0785c2cbf28e8ef2aec1 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.1.0.tgz + version: 16.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-11-25T17:28:31.670842498Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: eead92fd6065aa351c38a57ea51af158721ede06f1674eff652ced68d7ace981 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.0.4.tgz + version: 16.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-11-24T16:39:15.016289899Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: edbb405b72f8a94ece44ce5c5b9ec9816639d1580c4135d0efdf0f061c10a7b8 + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.0.3.tgz + version: 16.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-11-23T02:48:12.775882869Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 0284016164171ed8992e2f20bd131d1ee4b40d92099f546d7a13adfe5f93ab4d + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.0.2.tgz + version: 16.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-11-17T10:29:14.238140241Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 902223e7df42c371703855241080951efab4ed4e7ed8f713f784fe2b0929d88b + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.0.1.tgz + version: 16.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-10-28T11:59:14.417249864Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 47bc44ef49b7c8a38c470261dae4de0b2c0a17039d29d559ebba1a027ba7470e + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-16.0.0.tgz + version: 16.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-10-28T07:13:03.003738996Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 3d2ceb336663f2174b82a4dcd19c35e1f9d8524d3323f57e481b7d38d1852cfe + home: https://github.com/bitnami/charts/tree/main/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.3.0.tgz + version: 15.3.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-10-11T09:19:46.233656108Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 18b1336f0545a6d3f8c654be84e55c50dce8fa197c7590bcc87b800e3655f438 + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.2.5.tgz + version: 15.2.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-10-05T17:45:37.126412672Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: ee8526c60532f8846b56fb127961a92c17e48e1b43662981d7b13ea62dc817bf + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.2.4.tgz + version: 15.2.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-09-21T09:39:24.357813715Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 192c60bceb3cca816b5b4d8e822df66e831ae9ccceada7eb81f027525ea069cb + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.2.3.tgz + version: 15.2.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-09-05T16:49:44.75730982Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 886e37089e03114601e33dde74853dff376ad8363fa9c0b9e4749e325e501a3b + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.2.2.tgz + version: 15.2.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-08-23T23:30:19.22706429Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: a86deb425dd658d50b80caca048493cb5f352dc3f06d654486a39704a8ae9a4c + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.2.1.tgz + version: 15.2.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-08-22T16:25:12.690093108Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 69d7c66875129e1c4ca36b272a1bff418e856b7d1f2910c2b31c5558bd910dfc + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.2.0.tgz + version: 15.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-08-19T14:53:39.814735516Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 107afe223dc3a72650a0498cf35c64f4e16b037f6c0337588a039888ff8ea12e + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.1.0.tgz + version: 15.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-08-09T06:57:15.080781209Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 26bc76fcbea354c1c1828fc807caff0f71d34b0b0838fbf69428e7c955e32810 + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.0.5.tgz + version: 15.0.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-08-04T14:55:35.167153163Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 036637e7b6ad2604b1620a1f9b674f51ae52c9cc50105fcb993af7753498d03b + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.0.4.tgz + version: 15.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-08-03T08:32:03.290820058Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 4e8dd9742a025b2c9591fe29b0501f62f21d169b50e6eb2a5c055b31c9a823f8 + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.0.3.tgz + version: 15.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-07-27T20:12:17.837399587Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: edc99f745b372ce074bfc6135cfd0d65fab38a510df1e4745fba324bc6b8c74a + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-core + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-portal + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-jobservice + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry + - https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.0.2.tgz + version: 15.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-07-13T16:35:49.692614961Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 6312d0e54047bdd776d0fb87de617dc918479ceaf80705d8d72834fd1c81e176 + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/bitnami-docker-harbor-core + - https://github.com/bitnami/bitnami-docker-harbor-portal + - https://github.com/bitnami/bitnami-docker-harbor-jobservice + - https://github.com/bitnami/bitnami-docker-harbor-registry + - https://github.com/bitnami/bitnami-docker-harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-15.0.0.tgz + version: 15.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-07-13T03:45:19.616056271Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 2a1475b6dc93e9dc52757b837246d5d0dfddca02ba26856a90f2389c94902e97 + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/bitnami-docker-harbor-core + - https://github.com/bitnami/bitnami-docker-harbor-portal + - https://github.com/bitnami/bitnami-docker-harbor-jobservice + - https://github.com/bitnami/bitnami-docker-harbor-registry + - https://github.com/bitnami/bitnami-docker-harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-14.0.5.tgz + version: 14.0.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.3 + created: "2022-07-08T19:54:41.454794475Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 447b52d15203a819805a3bddd9bf60207f37bde8bb3f9510e1141de280c681ac + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/bitnami-docker-harbor-core + - https://github.com/bitnami/bitnami-docker-harbor-portal + - https://github.com/bitnami/bitnami-docker-harbor-jobservice + - https://github.com/bitnami/bitnami-docker-harbor-registry + - https://github.com/bitnami/bitnami-docker-harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-14.0.4.tgz + version: 14.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.2 + created: "2022-07-01T09:32:00.619758582Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 3764472ad60df00d4893dfbe35b564b57a98eb13cc3608b704c4323e39872219 + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/bitnami-docker-harbor-core + - https://github.com/bitnami/bitnami-docker-harbor-portal + - https://github.com/bitnami/bitnami-docker-harbor-jobservice + - https://github.com/bitnami/bitnami-docker-harbor-registry + - https://github.com/bitnami/bitnami-docker-harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-14.0.3.tgz + version: 14.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-06-30T14:01:25.784761214Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: 9c5116be0f939f88ae5fd1d95a3b3876642b4668df8c3beef7f70e72352d6bf1 + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/bitnami-docker-harbor-core + - https://github.com/bitnami/bitnami-docker-harbor-portal + - https://github.com/bitnami/bitnami-docker-harbor-jobservice + - https://github.com/bitnami/bitnami-docker-harbor-registry + - https://github.com/bitnami/bitnami-docker-harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-14.0.2.tgz + version: 14.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-06-23T21:42:41.243925058Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: sha256:bd005fae1bb2ca01e5950c6acabb2a91a824fd2a9124ec6b4aa2f5c7f4ff3618 + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/bitnami-docker-harbor-core + - https://github.com/bitnami/bitnami-docker-harbor-portal + - https://github.com/bitnami/bitnami-docker-harbor-jobservice + - https://github.com/bitnami/bitnami-docker-harbor-registry + - https://github.com/bitnami/bitnami-docker-harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-14.0.1.tgz + version: 14.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-06-11T08:45:01.409101373Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: sha256:843b485fa9e075b8a0e880368b0f6d0196b6c2c60974142b991837c7272369bf + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/bitnami-docker-harbor-core + - https://github.com/bitnami/bitnami-docker-harbor-portal + - https://github.com/bitnami/bitnami-docker-harbor-jobservice + - https://github.com/bitnami/bitnami-docker-harbor-registry + - https://github.com/bitnami/bitnami-docker-harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-13.2.7.tgz + version: 13.2.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-06-08T14:19:03.023740206Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: sha256:042f2728880702866be38d615cb388c801cf465bb95e03205680a81a3e2cfdec + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/bitnami-docker-harbor-core + - https://github.com/bitnami/bitnami-docker-harbor-portal + - https://github.com/bitnami/bitnami-docker-harbor-jobservice + - https://github.com/bitnami/bitnami-docker-harbor-registry + - https://github.com/bitnami/bitnami-docker-harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-13.2.6.tgz + version: 13.2.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-06-03T23:57:44.200117793Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: sha256:5bf5bbbc7bae5bc527d3b08834a3cabe2f06252c0a237c46dc3ebfd4e910afa9 + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: harbor + sources: + - https://github.com/bitnami/bitnami-docker-harbor-core + - https://github.com/bitnami/bitnami-docker-harbor-portal + - https://github.com/bitnami/bitnami-docker-harbor-jobservice + - https://github.com/bitnami/bitnami-docker-harbor-registry + - https://github.com/bitnami/bitnami-docker-harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-13.2.4.tgz + version: 13.2.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-06-01T09:54:21.608110482Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Harbor is an open source trusted cloud-native registry to store, + sign, and scan content. It adds functionalities like security, identity, and + management to the open source Docker distribution. + digest: sha256:ff45e8257f352bbdd95c1bec49438653c8ada07a50d535a9336a234843e9471d + home: https://github.com/bitnami/charts/tree/master/bitnami/harbor + icon: https://bitnami.com/assets/stacks/harbor-core/img/harbor-core-stack-220x234.png + keywords: + - docker + - registry + - vulnerability + - scan + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: harbor + sources: + - https://github.com/bitnami/bitnami-docker-harbor-core + - https://github.com/bitnami/bitnami-docker-harbor-portal + - https://github.com/bitnami/bitnami-docker-harbor-jobservice + - https://github.com/bitnami/bitnami-docker-harbor-registry + - https://github.com/bitnami/bitnami-docker-harbor-registryctl + - https://goharbor.io/ + urls: + - https://charts.bitnami.com/bitnami/harbor-13.2.2.tgz + version: 13.2.2 + influxdb: + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.30-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.63.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.488.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.10-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.10 + created: "2024-08-16T22:53:44.973466722Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 60e3c44d6c5c7db0fdbb8590d9ea012de243d96a740dad162160de32c794faf3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.18.tgz + version: 6.3.18 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.20-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.63.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.487.0-debian-12-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.9-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.9 + created: "2024-08-09T21:03:20.516909429Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: de8f29acb7bce970b17c0daccb484c53e34c0c65f193217ded0a207bde0b4653 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.17.tgz + version: 6.3.17 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.20-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.63.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.486.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.8-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.8 + created: "2024-08-07T04:07:42.287683882Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: af4fb97beb3d3713d90343efd6600d15a981bd16ec10b0490d13d4974f334845 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.16.tgz + version: 6.3.16 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.10-debian-12-r3 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.62.0-debian-12-r3 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.485.0-debian-12-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.8-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.8 + created: "2024-07-25T22:02:17.582649875Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 68f5a65c0b1f4646336611d2e58569158f8e330c4199b06a8e2eabb76463167b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.15.tgz + version: 6.3.15 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.10-debian-12-r3 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.62.0-debian-12-r3 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.485.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.7-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.7 + created: "2024-07-25T06:41:02.625232962Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 5132cc3aa5bcea80f22867c9e65fa8c8c1390c3008de2ee3b7a7ef21f6aa0780 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.14.tgz + version: 6.3.14 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.10-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.62.0-debian-12-r2 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.484.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.7-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.7 + created: "2024-07-24T06:03:27.974338216Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: f8e0ddb93959cb504c0a265785db0ef821527c1032264e96445257712814fed8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.13.tgz + version: 6.3.13 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.10-debian-12-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.62.0-debian-12-r1 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.484.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.7-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.7 + created: "2024-07-24T02:27:40.906900522Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 7905510dda86ec01a2bab06b8ecfaf444b985e61a83fc5ada97da9adfbc57398 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.12.tgz + version: 6.3.12 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.10-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.62.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.483.0-debian-12-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.7-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.7 + created: "2024-07-18T13:37:31.151544766Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 4bf44bcb97b82245e87ba9b1bff0feebfae42a5915608cd8093d879bf8ef6ab2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.11.tgz + version: 6.3.11 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.10-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.62.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.483.0-debian-12-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.7-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.7 + created: "2024-07-11T21:25:52.181908623Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 66669968d97c266e4dd27eb7d75f02c521625b5f6ec93c015b3314e3f83fb6fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.10.tgz + version: 6.3.10 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.0-debian-12-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.61.0-debian-12-r2 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.483.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-07-04T20:53:13.72185458Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 6086caac6aa6afe142bcf792e09e6a00e0c69bba3b34ac5b814b2c14cb88de34 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.9.tgz + version: 6.3.9 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.17.0-debian-12-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.61.0-debian-12-r2 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.481.0-debian-12-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-07-03T02:29:31.471141743Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: b5d0b9be711920beafa78c5ae553c235b103ada36ece9f41a785138db31cbaff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.8.tgz + version: 6.3.8 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.16.10-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.61.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.480.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-06-18T12:08:20.940181967Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 88d4bb226f8b44588b3e17ef7391618ab24b4c4d7ac9973ce322dca8d4023d86 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.7.tgz + version: 6.3.7 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.16.0-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.61.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.480.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-06-17T12:39:29.699524969Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 9a4314e6444bcbc607d97c92a8e2fdc32a52b75956cbf3d2a336153bef07e7a6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.6.tgz + version: 6.3.6 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.16.0-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.61.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.479.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-06-06T15:44:14.313044424Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 6edfcf950208663b5befd593d1f9a7ca7b60285609168ab65afe87d12104f39e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.5.tgz + version: 6.3.5 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.60-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.61.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.478.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-06-05T04:10:10.766228864Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 28dcde65e7caf1513a29756342b6a6fd78da9844631b0a536e1fd3023fa083fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.4.tgz + version: 6.3.4 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.60-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.61.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.478.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-30T11:11:58.23250223Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 3478a3fb8353e596e8d8910629b70d542f422e0bcd24f7e30fa82d82003fcfaa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.2.tgz + version: 6.3.2 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.50-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.61.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.477.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-29T16:57:26.616061517Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: e28f671eb5971b4d5eb1cd5d63b32d248a5fe6f3f3b78d4c3e7c4d67d3dbf036 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.1.tgz + version: 6.3.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.50-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.61.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.477.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-29T11:43:56.513128821Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: da9c5e8e325105e960283475efcffd7bc4c1d4fb2b93c1b70134b00ed89460b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.3.0.tgz + version: 6.3.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.50-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.61.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.477.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-28T16:52:46.796302546Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: c26aa5dd245a8d4f56ad3a48c491d2b5d8a98a577bded1a8ee05ad019439b2c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.2.1.tgz + version: 6.2.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.50-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.60.0-debian-12-r2 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.476.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-27T09:12:19.964959869Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 4febfe681a3b44d4e0f540c007a1d98eb9bfe0982a40acab28858f7e161c8b83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.2.0.tgz + version: 6.2.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.50-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.60.0-debian-12-r2 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.476.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-23T07:50:18.049414703Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 7828e20ff9f1400fd89207fb7dceca0cc40e5c41d96f4f7a1529d24ce934e635 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.1.1.tgz + version: 6.1.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.50-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.60.0-debian-12-r2 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.476.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-21T14:21:40.955875146Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 704754d8b64c263355912024f4d727effa861dd37edab065c66b849d919aee59 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.1.0.tgz + version: 6.1.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.50-debian-12-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.60.0-debian-12-r2 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.476.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-18T01:33:35.175957856Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 48c1ba62c784ff9d1fcf1bba59a682d9887574dd51c49dbbfde9d085de0b6700 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.13.tgz + version: 6.0.13 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.40-debian-12-r3 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.60.0-debian-12-r2 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.475.0-debian-12-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-14T05:56:20.642941557Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 8f789eb4d3db58925211f85b127d3da853ff223cd568f0bd5a8d610d5324f7fe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.12.tgz + version: 6.0.12 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.40-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.60.0-debian-12-r1 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.475.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-08T12:40:11.125704684Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 0b7f9cb9f22b133ad942a06adfe039008e202340cddd48691d886e20ee4afe8c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.11.tgz + version: 6.0.11 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.40-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.60.0-debian-12-r1 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.475.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-05-08T04:22:48.482691617Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 6e9ca37e4c3086cbe73343f7c764fc9dbfce9ebda7cadcc7d2b566dcc2182e27 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.10.tgz + version: 6.0.10 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.30-debian-12-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.59.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.471.0-debian-12-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-04-29T08:25:57.339280308Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 554f1293d64fe6b911d32bee2acbdb0d979d84e9cb5756648857fc3d906fc19e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.9.tgz + version: 6.0.9 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.30-debian-12-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.59.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.471.0-debian-12-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-04-17T16:56:33.995959344Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 1b895d7399d0fd516950c6aaecbb21655fd4afa5a6c5667240063dd7fc29ccee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.8.tgz + version: 6.0.8 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.30-debian-12-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.59.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.471.0-debian-12-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-04-17T16:52:46.13578422Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 03c0938ecd5650d18eca91a5886720ab9f574917e8c6a6511ebfe3829478822b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.7.tgz + version: 6.0.7 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.30-debian-12-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.59.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.471.0-debian-12-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.6-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.6 + created: "2024-04-13T01:37:51.236992141Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 5d37bf1ff95c91f17b0912e574f8c1b6f4212cf47b2d021e6b0d89927a5d3b92 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.6.tgz + version: 6.0.6 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.30-debian-12-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.59.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.471.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-04-05T16:37:59.961211902Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 3c21d8d59e60b15577d34edaf373892c7b10004c8bf91eff3f62f135211f8932 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.5.tgz + version: 6.0.5 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.30-debian-12-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.59.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.471.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-04-04T14:58:42.819263606Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 0792a949ee4e78975f2bda55e8c46cb488ef8e87353cac5fa4d2721c0bc00563 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.4.tgz + version: 6.0.4 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.20-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.58.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.466.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-03-15T07:11:41.558930254Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: bc688c1be710eeefce4b174616a4670d8f4a70d8c63a25bcc26a32950ccc01da + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.3.tgz + version: 6.0.3 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.20-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.58.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.466.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-03-14T08:50:25.347846833Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 10febbeb8ff04113fb6e7248eac11199e5732ff5dd29aaaa269eafcd2eac1f8c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.2.tgz + version: 6.0.2 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.20-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.58.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.466.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-03-13T15:31:06.541442319Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 1916a182d9f0e4f26f74073029a3ba0f68be5cae57691f6a4705f7f4a964aa8b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.1.tgz + version: 6.0.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.20-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.58.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.466.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-03-13T12:38:58.845758787Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 591f711ccf97bc4ab5c5b4051c5957a7c86ec70bae44aff892c88c322c993769 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-6.0.0.tgz + version: 6.0.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.20-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.58.0-debian-12-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.466.0-debian-12-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-03-06T20:03:00.112397862Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: ec81f6a98a81e842c35ef5e564f25c05eb2671a55f752e75434e32166d05e0fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.18.1.tgz + version: 5.18.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.20-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.57.0-debian-12-r5 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.464.0-debian-12-r3 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-03-06T09:11:12.824165494Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 9049629462e2396a14076c6824547d92d240302dd89056e9046a3164593481f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.18.0.tgz + version: 5.18.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.20-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.57.0-debian-12-r5 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.464.0-debian-12-r3 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-02-26T07:21:25.43935645Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: f091e47bef64a380db1710dd9bb95df0805838b6d07907f4e195fa825d12a2d4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.17.1.tgz + version: 5.17.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.20-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.57.0-debian-12-r5 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.464.0-debian-12-r3 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-02-22T09:48:42.088569009Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: b4e2d658d877655e7fbdd5388315e055f52bbae3f732eaf01ca898084528f9f4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.17.0.tgz + version: 5.17.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.20-debian-12-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.57.0-debian-12-r5 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.464.0-debian-12-r3 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-02-21T17:59:40.622464003Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 0c5c989967f911508c5c23c25e83aad816e81b7082c3ce1beb2ea3461db896bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.16.3.tgz + version: 5.16.3 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.20-debian-12-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.57.0-debian-12-r4 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.464.0-debian-12-r2 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-02-21T14:38:39.789186605Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 56895100dc28edf8d026ef54ca39441acf81f003fb39b103322e08d1f5705caa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.16.2.tgz + version: 5.16.2 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r3 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.57.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.463.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-02-21T13:03:31.982823911Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 59a9dd23cb43b8615e221d8a9db3280b3764b4876c5298451df9f143e258f09a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.16.1.tgz + version: 5.16.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r3 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.57.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.463.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-02-16T13:20:29.57658675Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: de13a0a295f5e97c1a7c8668b50d79cc9b2aecdfed26ef43eca1f094a5cc7900 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.15.0.tgz + version: 5.15.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r3 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.57.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.463.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-02-07T17:01:08.852717447Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 9993aa65b75a631f7afe906a3eb056e484f162171e4e1bdf7c6a5c18e21b32ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.14.2.tgz + version: 5.14.2 + - annotations: + category: Database + images: | + - a + - z + - u + - r + - e + - '-' + - c + - l + - i + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-02-07T11:12:52.927886809Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 18249b058bc497497143e7cfbe6610cbf8c4d36a08d167644caa5b0431a3cace + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.14.1.tgz + version: 5.14.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r3 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r3 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.462.0-debian-11-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-02-07T08:44:40.781094663Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: c5cd0a17a6c4d645856de262afe6e974487135b7196d517e800f2ab1f3da0ed4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.14.0.tgz + version: 5.14.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r3 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r3 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.462.0-debian-11-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-02-02T17:16:16.236127996Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 44e9105023cc6b10debdbb6a06c1929e75068a4102429476ea2a9e818c1eafaf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.13.6.tgz + version: 5.13.6 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r2 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.461.0-debian-11-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-01-30T22:50:12.077030794Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 9e4072028deff5c6630afb58e21d9216642a364025e5268d94a9059a0ed3c05e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.13.5.tgz + version: 5.13.5 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r2 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r2 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.461.0-debian-11-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-01-30T15:29:57.556816724Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 463bc36251526a48fb3fe361ea954c92e8f5c445ea52ea2a690cf8e9ffccefed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.13.4.tgz + version: 5.13.4 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r1 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.461.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-01-30T04:30:16.640445718Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 03bede6506bf3e84239802f7e65c0aa8dac037d12889256e06d79a23ab361cdc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.13.3.tgz + version: 5.13.3 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r1 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r1 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.461.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-01-27T19:17:17.050599597Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 227baeba55e37e018bf1fa5b9d1394295e1408a1885a946c9f6177dc986c139c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.13.2.tgz + version: 5.13.2 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.459.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-01-19T09:28:25.312073654Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 50185f4ef34c59b858b4425147646d912163c2ae86470786e5fd0ca0a5e0b7a6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.13.0.tgz + version: 5.13.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.10-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.459.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-01-18T08:36:25.566223813Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: ce63b47ed8cf83a38cff59b7deaccb78c9a02ec0198716ecc43cbb4f730d3131 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.12.1.tgz + version: 5.12.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.2-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.459.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-01-16T15:39:54.300371429Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 5ac8ef30482ea095547f4398ff99c940d3de9032a980c004a246db565bda2efd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.12.0.tgz + version: 5.12.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.2-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.459.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-01-15T11:08:42.630399979Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 6e51d9bab81b0dd777ae8c4e2cabb6d714badd0048d9be29459881e3a4eb1a69 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.11.4.tgz + version: 5.11.4 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.2-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.56.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.459.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-01-10T18:20:44.795351677Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: dcdffd5a32226c30ffb215d72908c19c176531055326f46d042c25e42183c64b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.11.3.tgz + version: 5.11.3 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.15.2-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.55.0-debian-11-r1 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.458.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.5-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.5 + created: "2024-01-05T19:50:44.170602494Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: f5a54960a7c96edc2e9eba6a1c1d350bacb330784fa683ecaeeae9a0cef1b052 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.11.2.tgz + version: 5.11.2 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.14.6-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.55.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.455.0-debian-11-r5 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-12-07T17:47:15.722901838Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: d313b27bcb418d344d00141d2812630a8111b6007cd06ad0a8cdd1ba5f2d13df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.11.1.tgz + version: 5.11.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.30-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.1-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.453.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-12-05T12:58:08.526056538Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 4e40d441c8907ea4db5186bf95e60e3c7b9da960b25d11a17d1ec13a69ae52f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.11.0.tgz + version: 5.11.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.30-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.1-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.453.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.4 + created: "2023-11-08T19:52:14.013144928Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 12103653a053f0200ddd4d90eec5681b2dff062f4fab5b182d2e5464799827eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.10.2.tgz + version: 5.10.2 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.30-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.1-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.453.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-11-08T16:38:26.886139074Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: e45da55d5b3eb48b27062be28a727a9d2f7646c795ce5bca7a883df22a564e02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.10.1.tgz + version: 5.10.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.20-debian-11-r15 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.0-debian-11-r10 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.450.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-10-31T14:42:51.899444722Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: d4761183fe3eee83eec1d554cf89ea61c907dfd823211ef0feb17ac4d9ce71d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.10.0.tgz + version: 5.10.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.20-debian-11-r15 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.0-debian-11-r10 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.450.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.3 + created: "2023-10-17T21:03:35.183495043Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 87d6852d6c6d534371d7d375cdf63ccdd097d4c16ad04994129c822cb8927fdc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.11.tgz + version: 5.9.11 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.20-debian-11-r15 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.0-debian-11-r10 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.450.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.2 + created: "2023-10-17T02:25:53.512730919Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 7e5ce752acac64772ca7ca7036becb603b7d62f66f98a99f9fd2f80695476718 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.10.tgz + version: 5.9.10 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.20-debian-11-r15 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.0-debian-11-r10 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.450.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r154 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-10-12T15:12:06.738629455Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: e308f09967bba772a81b908f5656e028b609de5dca1597d298d927cc70dbfb4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.9.tgz + version: 5.9.9 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.20-debian-11-r11 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.0-debian-11-r8 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.450.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r153 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-10-11T06:32:21.296158202Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: ef15467eb179bd396086b6f6a8277ca3f09f6320e5515db0f7a3777187c0497b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.8.tgz + version: 5.9.8 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.20-debian-11-r11 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.0-debian-11-r8 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.449.0-debian-11-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r152 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-10-09T23:47:40.378615066Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: ae675c8fcfd8c01457464cfd865b36ddb643c44fd673cef805d272a72d4d8e23 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.7.tgz + version: 5.9.7 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.20-debian-11-r11 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.0-debian-11-r8 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.449.0-debian-11-r1 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r152 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-10-09T19:18:56.012738936Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: ad870f64eff7d4921f6e3dae1585296ea994bb91fa52bb1c1a62fc04b5707f82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.6.tgz + version: 5.9.6 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.20-debian-11-r11 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.53.0-debian-11-r6 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.448.0-debian-11-r5 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r150 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-10-04T00:21:29.810744755Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: ec97ef826d3425b28c8db0bf9c13166c6c0813ab23e9275d60c3f4fab126ef7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.5.tgz + version: 5.9.5 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.13-debian-11-r8 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.52.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.444.0-debian-11-r11 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r125 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-10-02T06:33:38.547697819Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 3df5777ef2931a802ffce0f9a31249e77a79f55c26b255d82a41efabb46dd7c5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.4.tgz + version: 5.9.4 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.13-debian-11-r8 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.52.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.444.0-debian-11-r11 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r125 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-09-07T10:46:33.169475093Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 5d944880826bc9945731afdd34c2e10f5df749f0e6d80dc271c07a2219127997 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.3.tgz + version: 5.9.3 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.13-debian-11-r8 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.52.0-debian-11-r0 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.444.0-debian-11-r11 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r125 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-09-06T22:48:36.302614635Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: c12231f3d888d55ce7c7227375735dbf22f2c71622f5576688163eb3388f59d7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.2.tgz + version: 5.9.2 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.11-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.51.0-debian-11-r18 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.443.0-debian-11-r3 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r107 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-08-28T14:25:23.072150057Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 8a0c53a5629b3880b6f8a66748c70eb87cd04abfce864a12a26f99c0048ad928 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.1.tgz + version: 5.9.1 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.11-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.51.0-debian-11-r18 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.443.0-debian-11-r3 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r107 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-08-23T10:06:52.273455399Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: dee539ae275fdca808532e4d16238dceb6a920c440008a160d7bb61cf7044327 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.9.0.tgz + version: 5.9.0 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.11-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.51.0-debian-11-r18 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.443.0-debian-11-r3 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r107 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-08-19T19:46:18.585189939Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: d6b5ea5c465b2cc351ccbe555911c6074322b6e2e60b2d6cbe0c4e65c0059a40 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.8.3.tgz + version: 5.8.3 + - annotations: + category: Database + images: | + - name: aws-cli + image: docker.io/bitnami/aws-cli:2.13.10-debian-11-r0 + - name: azure-cli + image: docker.io/bitnami/azure-cli:2.51.0-debian-11-r14 + - name: google-cloud-sdk + image: docker.io/bitnami/google-cloud-sdk:0.443.0-debian-11-r0 + - name: influxdb + image: docker.io/bitnami/influxdb:2.7.1-debian-11-r103 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-08-17T17:11:04.506523616Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 1f77bebd6d8c261c20ea951d2055b99d6c57f1541c93d2c8f6f8a1c87328e9d5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.8.2.tgz + version: 5.8.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-07-31T09:16:30.998501098Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: dd1b8db2b935a8933b2c473eb4e44a15e6ed123122c730ddad47c1e57ff61192 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.8.1.tgz + version: 5.8.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-07-26T14:47:48.971362941Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 517f49af9d063b54d1ea665a5e24ab86e613f04a99a09ea3cf05d372efef27cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.8.0.tgz + version: 5.8.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-07-25T18:37:23.948504208Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 8ead8608c56e67e5bcaad545521872b56744f9e56cad43a42bb1fc576de92296 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.7.3.tgz + version: 5.7.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-07-15T09:41:46.990121401Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: a95d40aa8921d0127923baa7a28b0b77273ebf97064ddfdf470dce9430b0aae4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.7.2.tgz + version: 5.7.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-07-06T08:13:51.584315124Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 1f7950d9e819f183f92718519078bc9eadcc6e2bf2c186320e0c06e51fc3ce4d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.7.1.tgz + version: 5.7.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-06-26T07:00:17.209757821Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: a031dc079f40672eb5eefbd30aeba4e9a54626418e918449a0abbd19f9bba3fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.7.0.tgz + version: 5.7.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-06-27T08:13:40.225052676Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 25ff98bb38340edae6c4b6c55d8c13c713c5d5e52fd50cbd2f01a8df4a0ffd37 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.6.2.tgz + version: 5.6.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-05-21T15:46:39.929364562Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: f2692b1d543d1c26492b81014ec23cd6a828b68e426714bf112875f956d8d34d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/influxdb + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.6.1.tgz + version: 5.6.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-05-09T13:57:29.77519604Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: bbfc24741fded5635fcc36241607cd660780e8939634c12277156abbb5376ab1 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.5.2.tgz + version: 5.5.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.1 + created: "2023-04-29T18:11:47.395057342Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 0f0e43665154d869fe2d82f8dbdf9f7eb6b29045b54dfcc72c42ce119bfac9e0 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.5.1.tgz + version: 5.5.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-04-25T06:27:08.384904499Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: b08a1ddd254750389ea12a972b75140ece8f317c85a5a49ee6c477f914e963c4 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.23.tgz + version: 5.4.23 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-04-17T16:51:09.158187381Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: a755991ae595fb575eb53cf1a330ebed4a674ffc08143fd4ab8204db25068f6e + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.22.tgz + version: 5.4.22 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-04-11T07:16:34.737164552Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: db197555e190144a88ceef31e6c036f723a81dd86dbac95047480d685c7863f5 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.21.tgz + version: 5.4.21 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-04-01T13:01:45.020791163Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: e8cf33e11a5064fa8db1ee1af486b75161b78a113d4767384caab305e8a975da + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.20.tgz + version: 5.4.20 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-03-22T09:17:17.413526533Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 650ceaafc755cf6828c17e719693ab2c1461503aa36421b32d19b4bcd30446ce + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.19.tgz + version: 5.4.19 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-03-19T00:18:08.406016629Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: ae23f4352ef8e22e537ef6715e4674fcc743de06c0b4edc628bda53aebf11572 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.18.tgz + version: 5.4.18 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-03-01T10:03:55.071560171Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: f2b53b56c8d1a69a5ae4e34ae1480eadb0a3e32e2c37084a921a7991bb9d71da + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.17.tgz + version: 5.4.17 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-02-17T17:17:11.515036823Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 9b70c05aa17c2f381ce4d5eb859ed2e9173e5e50f3c02af3af15d78eb94c7793 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.16.tgz + version: 5.4.16 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.1 + created: "2023-01-28T19:56:37.538348678Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 3918284a4a51dce40046b293c2d8858f1147904fa197158bf1792d65316c7134 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.15.tgz + version: 5.4.15 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-12-29T19:41:52.751740543Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 587e184e86752f77b6dfe8c4c0a1cc52113fac3bd4a49efb7c4830cb32d2f38d + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.14.tgz + version: 5.4.14 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-12-16T00:18:24.009145056Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: d5eafdbb32ff9eff6d99bff32e121810e1fdfbcf40922de5b7ad1b2bee0471c4 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.13.tgz + version: 5.4.13 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-12-14T16:01:48.123016094Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 318a0dc64c654805cbea6e2f41e758a7443f057ec81fe779590594d037644c0f + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.12.tgz + version: 5.4.12 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-11-17T14:45:24.259126704Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 8c7748a59f42aab9834dc1e3a0c61d8bc49c1bad31d695b2f0bfadb194e2c610 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.11.tgz + version: 5.4.11 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-11-04T15:03:15.535986365Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: db6d6f92402c477358f457f6ebac4253184ee90eeca7bcbb54382f33e6c6c987 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.10.tgz + version: 5.4.10 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-10-31T14:08:19.842621094Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: fb31d4532b59828f43261852403f4a2ff43889d7aea99ee40c5c8163d23ac369 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.9.tgz + version: 5.4.9 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-10-24T13:24:16.37027537Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 6fa1452d60589daca399a38f8cde3e5d10bd289663ec65aee2be83e3e613f916 + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.8.tgz + version: 5.4.8 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-10-21T19:03:33.654599996Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: b13a76e98cf669998a3a14a5926a18c4d7f8f37023c18e3e0cfe3b34d836cdcb + home: https://github.com/bitnami/charts/tree/main/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.7.tgz + version: 5.4.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-09-27T07:19:33.654034896Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 8d8cab04d7dda35f85aa77b9b58e13957a8883f9df7419db3cdb05157a4f55a4 + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.6.tgz + version: 5.4.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-09-21T18:58:06.862914236Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: f53d038c2089e5d40676a36bbb4e9252e8b27191cc1d7f67c7096c72134aeef7 + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.5.tgz + version: 5.4.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-09-21T14:14:03.397997469Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: a23c1a1aea064c9397ff73657f2826d7613509b906bcf6bc2ffe6848ff3cd44b + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.4.tgz + version: 5.4.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-09-20T08:06:46.290284353Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: b36e21546fa6aeb348f36731bc05d75c2c46d3970db733adef750a85118a3d09 + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.3.tgz + version: 5.4.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-09-12T09:07:50.200128551Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 08d219fb2c21926acd600fa333b50fd8923418b505326712ceca815d39d26cac + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.2.tgz + version: 5.4.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-08-23T21:59:54.030043263Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: 103b72c2678c8dcfe7aceaf53e7258e36b93faab81afa1c32f144e40d0ec0dbe + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.1.tgz + version: 5.4.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-08-22T15:09:31.851035718Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:d5228bc5f64b8d265c350681671c7183c9a8964b9bc8142aced855eb0b47297e + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.4.0.tgz + version: 5.4.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.4.0 + created: "2022-08-22T09:00:39.983882957Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:b12d9a41eaf0c616ab50fe06d6fa61d90b53021a20b287e47724fecfc8b6999c + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.12.tgz + version: 5.3.12 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.3.0 + created: "2022-08-09T15:04:47.735910185Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:9ce97a1f92145e406fc25020f77015aaf4e6257c02243c127291e90ad312ce31 + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.11.tgz + version: 5.3.11 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.3.0 + created: "2022-08-05T01:22:02.265007584Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:fb7f659c18cb28feb32e33cf946a0885290602f5a995083c2c8eb66aaca892d2 + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.10.tgz + version: 5.3.10 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.3.0 + created: "2022-08-04T10:00:11.395026118Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:a2398384c1333c0542831cafdf6820f0bfc3b3fb680dd5d635fc080d08a2c4bf + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.9.tgz + version: 5.3.9 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.3.0 + created: "2022-08-02T09:02:36.5097759Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:cac6465b2bdd910dafb58b4df0118180eeeb4dd07ee48e4b951af7f8b80d304c + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.8.tgz + version: 5.3.8 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.3.0 + created: "2022-07-04T17:55:29.830189852Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:9e049ff60309d086d1871c5717133f16aebee57c1a7771f5b73df2e3654edc96 + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/bitnami-docker-influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.7.tgz + version: 5.3.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.3.0 + created: "2022-07-01T08:05:22.985178297Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:72a6f2d07728ff7d1c3fa2348c6143389b8ba56cbdf6392c595e2dd7ec116b3a + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/bitnami-docker-influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.6.tgz + version: 5.3.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.3.0 + created: "2022-06-21T17:59:13.732782077Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:8bacca92ecc751147817ce267725bf924f894ab9d85ad3b8122f4dbdc0749aee + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/bitnami-docker-influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.5.tgz + version: 5.3.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.2.0 + created: "2022-06-10T17:27:15.918917418Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:b5e0ee9707c64fb32158dc1f85dcc03ba2dc5221555e0819dc114e3cea77e127 + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/bitnami-docker-influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.4.tgz + version: 5.3.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.2.0 + created: "2022-06-06T22:33:07.761871237Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:fe3cbf4c082f9a7d1f887bf6a2421280a55c3e7dc7bb783ea03014a1ee52e0d3 + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/bitnami-docker-influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.3.tgz + version: 5.3.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 2.2.0 + created: "2022-06-01T16:58:01.416015313Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: InfluxDB(TM) is an open source time-series database. It is a core + component of the TICK (Telegraf, InfluxDB(TM), Chronograf, Kapacitor) stack. + digest: sha256:9ac8679a2d86da7048080ce7899ed55ef1308d334dee1715efefc5bf0b016ba2 + home: https://github.com/bitnami/charts/tree/master/bitnami/influxdb + icon: https://bitnami.com/assets/stacks/influxdb/img/influxdb-stack-220x234.png + keywords: + - influxdb + - tick + - database + - timeseries + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: influxdb + sources: + - https://github.com/bitnami/bitnami-docker-influxdb + - https://www.influxdata.com/products/influxdb-overview/ + urls: + - https://charts.bitnami.com/bitnami/influxdb-5.3.2.tgz + version: 5.3.2 + jaeger: + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r9 + - name: jaeger + image: docker.io/bitnami/jaeger:1.60.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.60.0 + created: "2024-08-07T04:32:47.370518017Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: dd5cdc8ab166a717d344a6369723d4a7c7e277d677338d7d62eeaa3f1815da5d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.10.tgz + version: 2.5.10 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r9 + - name: jaeger + image: docker.io/bitnami/jaeger:1.60.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.60.0 + created: "2024-08-06T19:23:47.713527457Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: e8ae6e7bbd8829d2012e94e1564ea0b55364e20d19017b81cdb7d42d259bc56b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.9.tgz + version: 2.5.9 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r9 + - name: jaeger + image: docker.io/bitnami/jaeger:1.59.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.59.0 + created: "2024-07-25T05:15:26.439455314Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 1f54672b190094f6fd8676bb9d7c4f358bbb5342f419815a13d06ef2406e565d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.8.tgz + version: 2.5.8 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r8 + - name: jaeger + image: docker.io/bitnami/jaeger:1.59.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.59.0 + created: "2024-07-24T05:51:44.835080074Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 78e30eede5389af1df728ff90e8986157a92a770ac79505e10c5954242488089 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.7.tgz + version: 2.5.7 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r7 + - name: jaeger + image: docker.io/bitnami/jaeger:1.59.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.59.0 + created: "2024-07-24T01:46:59.755943274Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: aff5123e7cd2d20299b5a2458fde1be4507d172851d2f70948927aff8b4788ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.6.tgz + version: 2.5.6 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r5 + - name: jaeger + image: docker.io/bitnami/jaeger:1.59.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.59.0 + created: "2024-07-18T08:46:46.679542604Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: ce0ddde199a96e403fe4b858d4703315e508a2bd571cf02b00f7cf6bd20dcdca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.5.tgz + version: 2.5.5 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r5 + - name: jaeger + image: docker.io/bitnami/jaeger:1.59.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.59.0 + created: "2024-07-15T11:26:43.539624422Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: b6fbf8d4bb0044840d68ba6c3834bd9e60c7d87bfdc357f0ad6d25b52edd8f1b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.4.tgz + version: 2.5.4 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r3 + - name: jaeger + image: docker.io/bitnami/jaeger:1.59.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.59.0 + created: "2024-07-15T10:22:49.754256407Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: e2038473c31dea3d3852c3c5691bbb0dec22f00a1473f11cda2ac0984530c0c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.3.tgz + version: 2.5.3 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r2 + - name: jaeger + image: docker.io/bitnami/jaeger:1.58.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.58.1 + created: "2024-07-04T20:41:49.958292987Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 4ea87b2c00b3963bc83175aa1f13e3e74d006736c624f727a33d2d3493a4ed90 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.2.tgz + version: 2.5.2 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r2 + - name: jaeger + image: docker.io/bitnami/jaeger:1.58.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.58.1 + created: "2024-07-03T02:23:36.548029348Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 6041ab843e1121f2a82d566f38f529c57775222ce5472a15bde6fe8a4a7894f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.1.tgz + version: 2.5.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r1 + - name: jaeger + image: docker.io/bitnami/jaeger:1.58.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.58.1 + created: "2024-06-25T13:51:31.605966813Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: c88d3c7b4cba3b2cbc0eedf766e58dfc0fce38f3e619b7d730b5b7d670813380 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.5.0.tgz + version: 2.5.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r1 + - name: jaeger + image: docker.io/bitnami/jaeger:1.58.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.58.1 + created: "2024-06-22T23:59:11.067973625Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: ea97004bb102c8889557271765e3cbf69fa7ed4d141ccf22ef07ab3051467dc2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.4.1.tgz + version: 2.4.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r0 + - name: jaeger + image: docker.io/bitnami/jaeger:1.58.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.58.0 + created: "2024-06-21T13:42:59.137655251Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 34324a5015af35a4776e9a63cc663b40b1b9824736a24469bc45d5949e172f85 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.4.0.tgz + version: 2.4.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r0 + - name: jaeger + image: docker.io/bitnami/jaeger:1.58.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.58.0 + created: "2024-06-18T12:55:14.121536633Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 0f30e389f0d9f30dea275df126c7ca5cc203bf74acdf852032db0a66f0df40c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.3.9.tgz + version: 2.3.9 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r0 + - name: jaeger + image: docker.io/bitnami/jaeger:1.58.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.58.0 + created: "2024-06-17T14:27:53.312213251Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: f68d68616bcf91f32c28d367fdae817c97daa102a3cbc5767ca1b7da2477a0d7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.3.8.tgz + version: 2.3.8 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r0 + - name: jaeger + image: docker.io/bitnami/jaeger:1.58.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.58.0 + created: "2024-06-17T08:16:28.290098984Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 392e1c42844589073096e926bf67d3d6551d142724d9f2d9049c434f499e842e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.3.7.tgz + version: 2.3.7 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r0 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-06-14T08:27:52.672499837Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: d7c1d4c44756ef4edd1299f698dd04a2766f7d5ff9cf422560794aef921959f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.3.6.tgz + version: 2.3.6 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r0 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-06-12T13:04:08.871362977Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 5466982f25ace8f1653d2a2881a73afd4dc03dca81e3ed62b86a7c9e5ef8b79d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.3.5.tgz + version: 2.3.5 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r0 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-06-06T15:37:06.826619341Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 5d126df72504f1b1a8e0d0f44d62545fffcb68b98709deaccc4db8ed9edf6d88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.3.4.tgz + version: 2.3.4 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r0 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-06-05T14:15:19.183032401Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: a0227d0017de5b032cf41bd5bed25aaab2628fd0c8c3d6dd5b1526fe39f14130 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.3.3.tgz + version: 2.3.3 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.13-debian-12-r0 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-06-05T04:43:43.816717138Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 5c8a4eb83fcb106249598a29c710fd031d9ebe463893be8b7425d924749422ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.3.1.tgz + version: 2.3.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r18 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-06-03T12:07:25.781378497Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: a0ee6890de92722b31f01cfdc7058043da00a6b0662028bcb9ab69f4ff0e978a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.3.0.tgz + version: 2.3.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r18 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-05-22T06:36:16.449193529Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 72811a41cfc011612b7e91ad8ed1f7f9cf99761ee306ea1436b156df54c013c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r18 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-05-21T14:23:40.916064485Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: d586227201688beb2db94c3e8ebd609155efd2b60f1d8b68d7ce245d9e1951c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r18 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-05-18T01:39:11.410571315Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: a7c70f210092631dce0c550275aa5f4237daf4194de5acb7134f17cf9dd9990f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.1.5.tgz + version: 2.1.5 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r18 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-05-14T05:16:33.402635503Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: c753a270ee75af29a90dd25a85f5d43b74f0d8be4d379828f30445fc2ed2bc0e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.1.4.tgz + version: 2.1.4 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r15 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-05-08T08:36:13.329615829Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: c9f5631f145c5245a3883a78d04ac936fcf44292ee50f3eba34feac5b5ecdff0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.1.3.tgz + version: 2.1.3 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r15 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-05-08T01:34:43.287867201Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 1bee26e0fc395563fa5ca36982f0ca330167799b63de90e3caa100292da2a7de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r12 + - name: jaeger + image: docker.io/bitnami/jaeger:1.57.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.57.0 + created: "2024-05-02T13:50:03.703911369Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: e1207859b323cee70bab9a36acd4f4a2333f81ca3f935e1a70471b750b094d4a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r11 + - name: jaeger + image: docker.io/bitnami/jaeger:1.56.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.56.0 + created: "2024-04-18T08:15:29.215109831Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 250b275bf79f3cedb5ce842bf65433cbfdf28b4b6500587e4f81fbb13f8e86e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r11 + - name: jaeger + image: docker.io/bitnami/jaeger:1.56.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.56.0 + created: "2024-04-05T18:45:23.312718741Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 0561f7c14cd521ec16f1f12ff4554040943d3cfae388d9f19f5872093a69bfc1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r10 + - name: jaeger + image: docker.io/bitnami/jaeger:1.56.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.56.0 + created: "2024-04-05T10:18:49.831916884Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: c80bc8439e619feda8598bfbbb5851e34928fd55fa5a201c7c45034ca6ef63a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r10 + - name: jaeger + image: docker.io/bitnami/jaeger:1.56.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.56.0 + created: "2024-04-04T14:59:59.150973955Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: b358c94bcb8c845f93442a21431d57daf4782a4dc222dd0d2318ceb0cf7a2726 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.11.3.tgz + version: 1.11.3 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r7 + - name: jaeger + image: docker.io/bitnami/jaeger:1.55.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.55.0 + created: "2024-03-07T08:25:54.119712798Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 313dd1994f794da58a486e007ca5c831eaaf8302bc99924f3ea76d177c907efb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.11.2.tgz + version: 1.11.2 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r7 + - name: jaeger + image: docker.io/bitnami/jaeger:1.54.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.54.0 + created: "2024-03-06T19:42:01.265038394Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: ddc591799761dcbaf8d0e7ef6c80b8f009dd2ceb2a806ca37e27117a57bc2769 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.11.1.tgz + version: 1.11.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r7 + - name: jaeger + image: docker.io/bitnami/jaeger:1.54.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.54.0 + created: "2024-03-06T11:56:36.446780703Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: f57adc49d568045f1f7adf7b9712a81942dad7a3a0ecf816c75df039a035c2ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.11.0.tgz + version: 1.11.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r7 + - name: jaeger + image: docker.io/bitnami/jaeger:1.54.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.54.0 + created: "2024-02-21T17:59:30.078229813Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: f7d8a43eae18dd84f4d98e2f593825264c0e092bfea8be8c34135369bfa6913e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.10.2.tgz + version: 1.10.2 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-12-r6 + - name: jaeger + image: docker.io/bitnami/jaeger:1.54.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.54.0 + created: "2024-02-21T14:41:14.703378265Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: a2b969435f9f880f3d25ee4c26233258e02991ac6b21b4f847e62d492a436dac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.10.1.tgz + version: 1.10.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-11-r2 + - name: jaeger + image: docker.io/bitnami/jaeger:1.54.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.54.0 + created: "2024-02-20T13:34:04.080770515Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: fb41317e4572870daee29c8ae390c0bf78ee140004a9a6ea6e43ef9f67abbc5c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.10.0.tgz + version: 1.10.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-11-r2 + - name: jaeger + image: docker.io/bitnami/jaeger:1.54.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.54.0 + created: "2024-02-09T16:59:56.950370536Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 00de1868993da59f003b3d8a40962d363bd3d691bdf0ef83cb43650070950bc5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.8.4.tgz + version: 1.8.4 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-11-r2 + - name: jaeger + image: docker.io/bitnami/jaeger:1.54.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.54.0 + created: "2024-02-07T17:09:17.291036921Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: b7462e58e109c24ac43f86a362e83c0b1ffea4ff8908fe3ad92dab60937546bc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.8.3.tgz + version: 1.8.3 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-11-r2 + - name: jaeger + image: docker.io/bitnami/jaeger:1.54.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.54.0 + created: "2024-02-07T14:46:14.49571813Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: fa479966f2acb0d24236eb9a7a09a4ad8144ab0b6873a6e5af4e02439dc64d13 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.8.2.tgz + version: 1.8.2 + - annotations: + category: Infrastructure + images: | + - j + - a + - e + - g + - e + - r + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-02-07T11:08:46.595994011Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: d23bfaa0707b8d603ad5fa233c017ca4bfdaca0496390416cbaa0091226dfc2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.8.1.tgz + version: 1.8.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-11-r2 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-02-06T11:16:50.582496566Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: d9c783d30ed1f2c04b5801fd0adf272beff1dfe467b67edb708e7b794c00e8b8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.8.0.tgz + version: 1.8.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-11-r2 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-02-02T17:24:24.305266115Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 5de864c2d6ea91bafc303eb28b8c1a059fde342c20ba06298bff024afdde1ada + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.7.5.tgz + version: 1.7.5 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-11-r1 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-30T23:05:07.140678762Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 579ffdca5194ccbdac13c64e835d5d885c568d0c518f37c4369664f5f6bb908e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.7.4.tgz + version: 1.7.4 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-11-r1 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-30T16:31:45.629031055Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 09c0243d8a1c81ba02b8691392e9a878f6cd34262c15a0d2ce2908754740a9ae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.7.3.tgz + version: 1.7.3 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.12-debian-11-r0 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-30T04:30:32.141757015Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 29f4f37b092fc0b4df47440dd1866f8201b833dca1987e202803748fcd760ec5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.7.2.tgz + version: 1.7.2 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r87 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-26T08:27:50.460242772Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: f75f044c4efe5b64b79e937206136a50c0f19405c1961e52ab13d0049ff2db7b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.7.1.tgz + version: 1.7.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r87 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-22T10:50:32.514830776Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 7df6f6cdbd69d159abdd0df66e921473049c05b20487ef503f7e544fd6b4ac9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.7.0.tgz + version: 1.7.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r87 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-19T15:11:51.585309288Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: e84f64accb425c9e95d2ea54ae944f9a6baa9c975d27eba50d29417998b4f525 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.6.2.tgz + version: 1.6.2 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r87 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-18T08:37:54.262378435Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: ec19040d6393f07ea061cbba490bcc04ec4d067428d691cc0df4ffe5b00f11b3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.6.1.tgz + version: 1.6.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r87 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-17T08:56:46.629149514Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: bcf3e423b55cc92e67e9d15eafdbc03ed3975e7a788c503751678d8a6cef4065 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.6.0.tgz + version: 1.6.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r87 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-12T14:37:33.540257416Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: a856aa482808cd04d2408fb59ae97d93409936453e4ab59d10e4182de1d83bb2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.5.8.tgz + version: 1.5.8 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r87 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-12T10:18:49.932736197Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 2d217e8cb58333cc4dca70c73f025a74da31bf655d13913a9ab8f7b88805a706 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.5.7.tgz + version: 1.5.7 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r87 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-11T17:18:29.560798092Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 0bf188c41146d50d7bb6296a9d6f2ee25bd031cee8919e70df5d9bfc96eb7bcf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.5.6.tgz + version: 1.5.6 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r86 + - name: jaeger + image: docker.io/bitnami/jaeger:1.53.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.53.0 + created: "2024-01-11T16:06:08.699372412Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: ba52e0d6b5a52f446abaf8308c49ad81f716e46bdf18f7cfd80f218a764af431 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.5.5.tgz + version: 1.5.5 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r84 + - name: jaeger + image: docker.io/bitnami/jaeger:1.52.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.52.0 + created: "2023-12-12T13:48:02.501897239Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: be6ace75b8f288141b4ad76d9821834114b5f3b94b56d807aaabbeb683832d20 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.5.4.tgz + version: 1.5.4 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r84 + - name: jaeger + image: docker.io/bitnami/jaeger:1.51.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.51.0 + created: "2023-12-07T11:59:47.890779621Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 3f1cd803d7ff4f2627c0ee4d893c49f82c40369debc76ffaa35af2d1b0f7dfce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.5.3.tgz + version: 1.5.3 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r84 + - name: jaeger + image: docker.io/bitnami/jaeger:1.51.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.51.0 + created: "2023-12-05T12:20:36.881759431Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 4c32cc727dab33ac640fd9f57e33e44f16455a2b7d0e7b8c941689228e0f8c59 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.5.2.tgz + version: 1.5.2 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r84 + - name: jaeger + image: docker.io/bitnami/jaeger:1.51.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.51.0 + created: "2023-11-21T18:33:12.839036052Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 6ecf4ffb318d12d673a645671796509ad165d941811fbec03ddc09fcef844f63 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.5.1.tgz + version: 1.5.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r81 + - name: jaeger + image: docker.io/bitnami/jaeger:1.51.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.51.0 + created: "2023-11-17T11:40:16.719211793Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 470369c81ba5cf6ac87eb3022c54c2b6ae732c6d574f0d2cd07e3beac1a1d58c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.5.0.tgz + version: 1.5.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r81 + - name: jaeger + image: docker.io/bitnami/jaeger:1.51.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.51.0 + created: "2023-11-08T20:00:59.078975564Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: dd6159721aa79c63054d9dcc37a81e1e6fcb661d49eb2ef54d8419c16953c842 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.4.3.tgz + version: 1.4.3 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r81 + - name: jaeger + image: docker.io/bitnami/jaeger:1.51.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.51.0 + created: "2023-11-08T16:31:56.316555746Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 9ede8dd46d2ceb4984985f584f7a248e0528b28b5984559dbfadcc88eade4af6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.4.2.tgz + version: 1.4.2 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r79 + - name: jaeger + image: docker.io/bitnami/jaeger:1.51.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.51.0 + created: "2023-11-06T14:40:16.030588234Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 908cc95c4bdee363f4aba59025a8a31bc25c77d1f4bfd1225119b19661284a9d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.4.1.tgz + version: 1.4.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r76 + - name: jaeger + image: docker.io/bitnami/jaeger:1.50.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.50.0 + created: "2023-10-31T13:11:37.589933255Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 760306511e619e7a7625f93dc1e6da7eddba7fd6dd0b8aacb71f02544f5c6d84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.4.0.tgz + version: 1.4.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r76 + - name: jaeger + image: docker.io/bitnami/jaeger:1.50.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.50.0 + created: "2023-10-11T06:45:11.834353835Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 88f2b38e9365b016ea37fac6b85e5aee496a684058d1e0439a4154b004e93afb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.3.5.tgz + version: 1.3.5 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r76 + - name: jaeger + image: docker.io/bitnami/jaeger:1.50.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.50.0 + created: "2023-10-09T19:34:30.535304763Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 3e95972f6211e6ccbf47ab7edf9fa5df92ff388ca82e50584e12e902b40d4374 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.3.4.tgz + version: 1.3.4 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r73 + - name: jaeger + image: docker.io/bitnami/jaeger:1.49.0-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.49.0 + created: "2023-10-04T07:35:28.103279515Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 2d7266826a5dd482ea5bb3d701287f2f7a96528b2ee0c0b9cd4a3079489b024b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.3.3.tgz + version: 1.3.3 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r49 + - name: jaeger + image: docker.io/bitnami/jaeger:1.49.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.49.0 + created: "2023-09-08T08:29:22.7490688Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 411561f53e459ec57aca1112daecbad59e1690c85438842ea7f4ab37789e66c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.3.2.tgz + version: 1.3.2 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r49 + - name: jaeger + image: docker.io/bitnami/jaeger:1.49.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.49.0 + created: "2023-09-07T19:03:40.563234421Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: cc889f51e75de03cb531f0dc58f10301a4a83185bf7a311a05f51a80c206eb06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.3.1.tgz + version: 1.3.1 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r33 + - name: jaeger + image: docker.io/bitnami/jaeger:1.48.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.48.0 + created: "2023-08-25T16:14:26.91569655Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: a08d256647a2e4a4dfc44653ec69c1a5990c0361ac8bc502f63eb562349b3ab6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.3.0.tgz + version: 1.3.0 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r33 + - name: jaeger + image: docker.io/bitnami/jaeger:1.48.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.48.0 + created: "2023-08-23T17:33:46.060515113Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: bd7e46ff87c14a22b696c0ba4076ddfd31f940776a95a51c339c255fe8d9de23 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.2.10.tgz + version: 1.2.10 + - annotations: + category: Infrastructure + images: | + - name: cassandra + image: docker.io/bitnami/cassandra:4.0.11-debian-11-r27 + - name: jaeger + image: docker.io/bitnami/jaeger:1.47.0-debian-11-r37 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.47.0 + created: "2023-08-21T15:30:20.849425853Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 4aa7ff73ec83d8d9f53b07a986bd437b2d7fa3bf9bb1f59cf6ffd5264f9fe27f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.2.9.tgz + version: 1.2.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.47.0 + created: "2023-07-25T13:35:42.71139682Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: c83fbf698b0cef306d351b658fad96a3f333408c94b6e2ca68c4e2a3472a013b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.2.8.tgz + version: 1.2.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.47.0 + created: "2023-07-15T09:58:16.878231999Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: c65894e37452182982c5414f7d6c2732c03b374a9f3ae8598ab6573d22e4c3c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.2.7.tgz + version: 1.2.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.47.0 + created: "2023-07-07T18:46:21.546644127Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 780c484fdc31597245fcbae41800a7bb5fcfad322e9c1d41b610b03d7d21c2b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.2.6.tgz + version: 1.2.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.46.0 + created: "2023-07-05T05:40:42.677709532Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 59d612d924ca0e37b75fcc054cbc6bad6b5e9dddaeec6d50e5460d0b769cf31c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.2.5.tgz + version: 1.2.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.46.0 + created: "2023-06-07T16:04:32.438689863Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: da1c2633d47e2662c4272500baea5bd64bba14de1d3a9cbe0ac5f3b7ff0cad42 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.2.4.tgz + version: 1.2.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.45.0 + created: "2023-05-21T15:49:41.032018967Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 928d2c95df7b993433d995ad44fdf874484c3f53f5e06c5d23f89db180860eae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.2.3.tgz + version: 1.2.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.45.0 + created: "2023-05-22T08:15:41.664750488Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 275fca46b6d8606264f0fd6115a71a74b7ae1a18109a9d55d7b0c53be948fa34 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.2.2.tgz + version: 1.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.45.0 + created: "2023-05-11T06:59:18.544346317Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 3225117f848023b86bfbca9ad44d59d7e0eb07d8c00010d84558ff7d2fb03c7e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jaeger + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.2.1.tgz + version: 1.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.44.0 + created: "2023-04-11T07:53:27.759102402Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: a0481550ec30be5798ff8a97a0e9d0d95540e02c08217484a2ab3bc840f02489 + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.0.7.tgz + version: 1.0.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.43.0 + created: "2023-04-03T16:25:58.661824389Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 9aff43c5533c5069e67f5b25aaf6189df5f9a87d8dd726dbf97921a6a567da6f + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.0.6.tgz + version: 1.0.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.43.0 + created: "2023-03-19T01:49:09.064578533Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: f56d43ac50cc888b39354a12cb408c70084e7e04a95894003c0d94cf31124b3c + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.0.5.tgz + version: 1.0.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.42.0 + created: "2023-03-01T10:59:37.79547836Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 7e676f28e5fc906d87d3311c1410851ac10d545e952510aff0a5933283dff53e + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.0.4.tgz + version: 1.0.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.42.0 + created: "2023-02-17T19:25:50.571201691Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 85c0a5ba4694ce1ea84af5b6f963904c78079bb659f328207c39f6ca4f97b907 + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.0.3.tgz + version: 1.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.42.0 + created: "2023-02-06T12:02:43.910496944Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: caca2ae98ef3b72f27e3099cdea0542ee946a935fb1c0a7624e7fb708d625070 + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.0.2.tgz + version: 1.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2023-01-19T15:15:51.896196452Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 06469a3c827d7d260d0fe770e22f54f0c07b640e4835d2b093ba54401f104718 + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2023-01-13T07:54:53.358506575Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: d70ad64fdb2e246b3341fab628cb678a1d456d3fc92a080f0d0b5660107f5620 + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.41.0 + created: "2023-01-04T12:00:43.227113583Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 4d9c64273984cd1b67bc3d79076b9a536e1c09fc3e11bfa7d5741489f957a41c + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-0.1.3.tgz + version: 0.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.40.0 + created: "2022-12-21T17:20:37.460882014Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 4ac9f5a26e744c33688313e725afae78532a487a390795c1104c5f2439a68a24 + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-0.1.2.tgz + version: 0.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.40.0 + created: "2022-12-20T13:32:11.697296386Z" + dependencies: + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jaeger is a distributed tracing system. It is used for monitoring + and troubleshooting microservices-based distributed systems. + digest: 8666de078908cecf7586dbbb436631338fc04015a2ba28f99b77d001f2f99f7c + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-0.1.1.tgz + version: 0.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.39.0 + created: "2022-12-20T12:24:18.436787528Z" + dependencies: + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Distributed tracing platform for monitoring microservices-based distributed + systems. + digest: 4eac3b1132d801b3662647fd1b9b149a2d85fe863cebd34856d77c0ab895d801 + home: https://github.com/bitnami/charts/tree/main/bitnami/jaeger + icon: https://bitnami.com/assets/stacks/jaeger/img/jaeger-stack-220x234.png + keywords: + - jaeger + - tracing + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jaeger + sources: + - https://github.com/jaegertracing/jaeger + - https://www.jaegertracing.io/ + urls: + - https://charts.bitnami.com/bitnami/jaeger-0.1.0.tgz + version: 0.1.0 + janusgraph: + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r10 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-07-25T06:47:00.126283628Z" + dependencies: + - condition: storageBackend.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 36297a969bca8aef07122d9e79e6d426223f200fa824b41e0d961230b9017222 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.18.tgz + version: 0.3.18 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r9 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-07-24T06:03:39.884277915Z" + dependencies: + - condition: storageBackend.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: c6f8993028efae3b388593e278b897ea93f519c2eefae95b055c904b1289a9f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.17.tgz + version: 0.3.17 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r8 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-07-24T03:21:49.714135795Z" + dependencies: + - condition: storageBackend.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 2b236c3f8aabb6f7674e969fe131fa4a80e36b3152ef1af567a276ee69277955 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.16.tgz + version: 0.3.16 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r7 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-07-18T08:41:56.77718864Z" + dependencies: + - condition: storageBackend.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 8ce30f9475388905a6205d171f50384bbfe761335b3f15d17df7a0f946403361 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.15.tgz + version: 0.3.15 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r7 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-07-05T11:54:19.941975329Z" + dependencies: + - condition: storageBackend.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 24b0d6d8585cc556c557f27e87330ce0aac045ac416b61c428bc0f1f7b5f86a0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.14.tgz + version: 0.3.14 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r6 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-07-03T07:40:17.521690754Z" + dependencies: + - condition: storageBackend.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 761e8666c59abe3e274283c8f4378c761438e0a923a97d4f2daec3b81be94996 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.13.tgz + version: 0.3.13 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r5 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-06-21T14:52:10.405048832Z" + dependencies: + - condition: storageBackend.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: c04caaaa430224401785f117aeda7717bcf7f9694f43135151b6f0b4f235ffed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.12.tgz + version: 0.3.12 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r5 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-06-18T12:06:28.627920718Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: aad1a6f09bd10934c3f917fd9dde333587e976b6ce6a969cd75cbe985d757107 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.11.tgz + version: 0.3.11 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r5 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-06-17T12:39:43.976189853Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: bf3e2dfc31b821ad0543015e18deb4ff837ba2a9e944cdf571af683cba5c5416 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.10.tgz + version: 0.3.10 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r5 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-06-14T13:18:15.451700859Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 8a10582cfef310b2ac4f9408f1ca1b7e29986f0ef573e6afa7b174c068266ae5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.9.tgz + version: 0.3.9 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r5 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-06-12T08:41:26.048223962Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 60717a8541b296897550414ccd33a0195b5943a3ecb1fd36f2de850fc7de3aa6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.8.tgz + version: 0.3.8 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r5 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-06-06T15:30:39.699906925Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 766c8f738cf45a83d545f81b7755ad31a70cd81511a8e4c63369e8252254a455 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.7.tgz + version: 0.3.7 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r5 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r18 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-06-06T12:32:21.551621373Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: b49b4cf7dcee31c7fc2790c752c7ef9ae9b5a84d3ac371c7bc66b282169f5fd2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.6.tgz + version: 0.3.6 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r4 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-06-06T07:06:14.928017843Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 8b7f16a1a41690e2bda74cd5a9b90ab088ab5acf1c60abe473ccce34eb096531 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.5.tgz + version: 0.3.5 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r4 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-05-28T14:30:48.2769647Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: d0cfaa507b62e4ba19e59d01e16eb81db2b7e14706a64cd4714b94eec9908c2f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/janusgraph + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.2.tgz + version: 0.3.2 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r4 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-05-23T11:09:45.244389772Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 5db2b62557c78d3757580b885dc0b4f8000cb96d65009e30f0a8cf161c6733e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.1.tgz + version: 0.3.1 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r4 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-05-21T14:20:46.843116136Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: b2996c2013b47a99c529cde6dbe31d888b3c46630759bd2a045ea1c1e466b00e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.3.0.tgz + version: 0.3.0 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r4 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-05-20T10:35:59.367487789Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 0d1a79a27847491838e8ebec7676793511aeaff2f391ca38a578735760cf29b8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.2.0.tgz + version: 0.2.0 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r4 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-05-18T01:33:51.924310075Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 35abd72be6da226606f2a7370ad9cdf9a4a8226c6881257716a8af994fbabe4f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.1.7.tgz + version: 0.1.7 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r4 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-05-14T05:14:55.010281955Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: c14489afa0bb9690c0d7731124bdf5fc32b5785bb847c00c2cccbb358af26b5b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.1.6.tgz + version: 0.1.6 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r2 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-05-02T11:26:52.871866615Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 4f80837b246493d43f79d7ad5309214338c903c629716d42124cef034778419e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.1.5.tgz + version: 0.1.5 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r1 + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-05-02T08:04:29.568619767Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: 948be356ccb3f5567045ba9fcfdcdd15ef108267fcb8842173251f70a6a70fd8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.1.4.tgz + version: 0.1.4 + - annotations: + category: Database + images: | + - name: janusgraph + image: docker.io/bitnami/janusgraph:1.0.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-04-30T11:44:36.489588886Z" + dependencies: + - condition: storage.cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JanusGraph is a scalable graph database optimized for storing and + querying graphs containing hundreds of billions of vertices and edges distributed + across a multi-machine cluster. + digest: db2a0d317180721e7e2012d44ff9dc080e0375bb4b0ae4f239ad4c010774ee76 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/janusgraph/img/janusgraph-stack-220x234.png + keywords: + - janusgraph + - graph + - database + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: janusgraph + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/janusgraph + - https://github.com/janusgraph/janusgraph + urls: + - https://charts.bitnami.com/bitnami/janusgraph-0.1.3.tgz + version: 0.1.3 + jasperreports: + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r105 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2024-02-12T12:38:02.460023832Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + deprecated: true + description: DEPRECATED JasperReports Server is a stand-alone and embeddable reporting + server. It is a central information hub, with reporting and analytics that can + be embedded into web and mobile applications. + digest: 6befcfa92441acb7b8a5e3469a67eb90fefea904db152d57ec315abd8ae7f468 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-18.2.5.tgz + version: 18.2.5 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r105 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2024-02-08T22:02:04.293649503Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: ee948460cc1d0b2b3b24c1b7fb3eb8efbd2bb3ec635cea6fcfc447a69653a03d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-18.2.4.tgz + version: 18.2.4 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r104 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2024-02-08T14:39:02.655405127Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 1c09c90fb9c2fd6814004bd6b7a449929f588654339526a0b2e13d3ed52458ae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-18.2.3.tgz + version: 18.2.3 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r103 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2024-02-03T08:28:19.187391655Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 6ccda07573919a2e960a9979a5fb4db2183f7df2eaedf14b76d413d1cded240c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-18.2.2.tgz + version: 18.2.2 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r100 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2024-01-22T15:44:43.524439032Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: dda9aa45a27cd43d08757a1df585967574b448746f5e42e06004d06d9e94180d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-18.2.0.tgz + version: 18.2.0 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r100 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2024-01-18T08:37:47.497260707Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: b1741e43f0484c93dc718aed9a6098fdfcfb7b75681b0a3592eacef682a1874a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-18.1.1.tgz + version: 18.1.1 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r99 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2024-01-17T11:58:25.953852633Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 1e206f323a9dce252b8092b6b1b718e7c562704dac56c09445b90292ab2b9504 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-18.1.0.tgz + version: 18.1.0 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r99 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-12-20T11:25:35.328334879Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: ca7c47efe83d50f150e0a03c010c7c5e9742ea9f0dd0aa88493ce3eaae33c42e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-18.0.0.tgz + version: 18.0.0 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r99 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-12-20T08:26:01.045681961Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 1f38c59e609c7906cdcf129fbee5abda00b318ce75bb89c297828b0cf3cf72c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-17.2.4.tgz + version: 17.2.4 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r99 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-12-17T12:32:04.12562486Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 15f6384f3e8d794ae20fd6813183e7d030aeb2be31eef7a669c34a89341be89b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-17.2.3.tgz + version: 17.2.3 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r97 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-11-21T18:35:55.707529502Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 37129a607009d8ca67e1b6047bcbde66e6e6e7285b803ebee3a57b44a30ada5d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-17.2.2.tgz + version: 17.2.2 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-11-08T17:47:16.395245887Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 6c32e97cf6a2ef8ca02306642051ba5b9e76d68bd0b1aee0d491affe7d300e2b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-17.2.1.tgz + version: 17.2.1 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-10-31T13:10:16.680270379Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 479a55b66d9717c98fab38ce4f14cf2149f6b86e47f1aec6d080d7bdf8232beb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-17.2.0.tgz + version: 17.2.0 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-10-25T09:05:40.119928808Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 67f8c520c7159376309e894b0082aca42367a997758d9deee40d9897fa6714d2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-17.1.0.tgz + version: 17.1.0 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-10-12T15:10:40.587677528Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: b0e1cd1083f821d07d937bafa6a2f396863cd4ca5bc3bf168d474b6fab8fad4a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-17.0.1.tgz + version: 17.0.1 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-10-11T09:14:46.20721386Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 47ade4a6c7162fa789dde384115d4c13fa5b25694ad03536803c9a22926214ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-17.0.0.tgz + version: 17.0.0 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-10-10T10:44:48.465713037Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: eb36d27f63d7a3b46fde651fc0a745aa22c831c68d98024b8dbf5f0e2a8964a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-16.1.3.tgz + version: 16.1.3 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r76 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-09-18T23:18:53.37996212Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 7c0811297110cc3a8adbde562ebb1ffb453c828879f177bafbf611a0d0c130ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-16.1.2.tgz + version: 16.1.2 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-09-08T08:04:16.006038947Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 4b207f4c205700f568e4b8e3b07516cc926caba955c92d5e59d3a1f1c15fdfb5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-16.1.1.tgz + version: 16.1.1 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-08-24T11:43:29.636566941Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: b81dcab1bb576b51297dbbf57eac49e6de0d4802070e032a790b8bc7d6ff45cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-16.1.0.tgz + version: 16.1.0 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-08-19T22:59:12.533790514Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 9792110f8abde982303d56fb4375ecec329bb7f97bd10406157c83ceb7fbabe7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-16.0.3.tgz + version: 16.0.3 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r48 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-08-17T18:40:03.52647664Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 256fba734459a5ec26c29943abe910ff9182d0d56f1d13fd663d4836db2bf27d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-16.0.2.tgz + version: 16.0.2 + - annotations: + category: Infrastructure + images: | + - name: jasperreports + image: docker.io/bitnami/jasperreports:8.2.0-debian-11-r42 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-08-07T19:19:59.080810849Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 7f7318f52c78cf5ad9fa8db77912bc7ec6e6eacf3cccb8c2ccdb80065231e7ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-16.0.1.tgz + version: 16.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-08-01T14:43:49.746265092Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: d3826544c24d935d29c3488ade66e54c77a84e99df5d0b719e3ab49b51c1c65e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-16.0.0.tgz + version: 16.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-08-01T08:35:57.03550916Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: f0ad6fc2db36c4d7c1c47ec163e6c0bff05cdcc25226c7938ed72c71ce389f5d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.1.7.tgz + version: 15.1.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-07-25T14:16:08.186273069Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 0f2b315a628802e9fa5849e1fd56906aaa3c21ae6cc086e32bb9ad77f45f2c84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.1.6.tgz + version: 15.1.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-07-17T21:50:35.022748355Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 69c887dc24f7958f552255841f783f90ca5e7de983ade01ab3618bf829393eb0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.1.5.tgz + version: 15.1.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-07-15T10:18:43.387980879Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: b6087023023895e94874c87f4f5220504081acba0f39237f17eb7cc9a6acef8f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.1.4.tgz + version: 15.1.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-06-20T18:51:44.380086934Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 1d5466fb4ba403887d16d1048f70a3b4a37f79c700f826f0e8bc6333154b13cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.1.3.tgz + version: 15.1.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-05-22T15:33:23.979598405Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: bcedf618b9ffb48a5db2a504a6a5fbd780ffc832d51da6d8a14552381d78d317 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.1.2.tgz + version: 15.1.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-05-11T14:51:57.144568669Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 1b11b338c28baf217c88624978df6c6068c667e57717aab936aba6bfdada0eed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.1.1.tgz + version: 15.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-05-09T15:32:34.013045692Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: a85a3388aa53059221ecfb385fea7c2053e2e5c5a6cfa84ceb0b41d62399b589 + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.0.3.tgz + version: 15.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.2.0 + created: "2023-05-10T06:44:15.655414031Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 044317bdb0f576225c28e3ea9617f813750ca295f5f5a613187c1b76f688d2b3 + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.0.2.tgz + version: 15.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.1.0 + created: "2023-05-01T15:13:57.39645205Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 6c7b84914b922aea3dc138fe0122896c90356fb968bc8034a330a0b01a06aa8b + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.0.1.tgz + version: 15.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.1.0 + created: "2023-04-28T07:03:30.038163328Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: e783a645bcfd941cc811eb7976654e2ecee6ff549cb519bdfcec2c316c6d9d76 + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-15.0.0.tgz + version: 15.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.1.0 + created: "2023-04-17T16:51:24.566731657Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: dc951c4ec4fe559489814a504b6e248b250d4374f3c17eb10c7975e3c93d1938 + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.4.0.tgz + version: 14.4.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.1.0 + created: "2023-04-01T15:05:23.098640791Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 2fa1f6faf6478008a199591a8bd564d24383b41840f270039fb53a178a8be299 + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.13.tgz + version: 14.3.13 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.1.0 + created: "2023-03-01T10:36:09.954012711Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 4a047198e677a57e2e1e819939684be3bd6e78126faaafbe73b3c17e9d74c7bb + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.11.tgz + version: 14.3.11 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.1.0 + created: "2023-02-17T18:32:46.87012912Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: d274501e02446d70f1438930fec390a7c59d1933a985fbbb05a095f28ac43116 + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.10.tgz + version: 14.3.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.1.0 + created: "2023-02-06T07:54:21.329476659Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 78eea91d2415217db6b8845e44f48bafe7b56d031f3acd666e55de612db7836f + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.9.tgz + version: 14.3.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.1.0 + created: "2023-02-02T08:21:19.943777564Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: ade078d5ecef45fa9ef5d0f9c9daa70d7ad88b5251bcf91a2cd86f0e9a64c3ec + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.8.tgz + version: 14.3.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.1.0 + created: "2023-01-07T17:43:47.08542282Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 5cf026d71bf6becbc071a74ea2b5bd8c0939f64749bc25b71d22cfd17094cbf1 + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.7.tgz + version: 14.3.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.1.0 + created: "2022-12-07T09:19:00.841905662Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: 1387d6a4a83c2623f9fdb54ae949ed8fd68bd5929b3283fb12d5b3d704badcf6 + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.6.tgz + version: 14.3.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.1.0 + created: "2022-11-08T07:32:12.8858972Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:e2be2c77539465343c5f59c483be9c9f5cea28e53ba41662e9b079ebe3b48e21 + home: https://github.com/bitnami/charts/tree/main/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.5.tgz + version: 14.3.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.1.0 + created: "2022-10-08T09:51:55.419353915Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:3ebf00273f92969bb10b18fda553adebb10ad46a3df30a2a5c3c3039515219ca + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.4.tgz + version: 14.3.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.1.0 + created: "2022-10-07T00:11:38.710499568Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:c801ab1a3a54ffa33f1a9b548bdc9d8c440ccc3dae9bd586c299a53f550331aa + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.3.tgz + version: 14.3.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.1.0 + created: "2022-10-03T18:45:58.522731334Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:ea1455d0fe69fa6b2615c25950c332881787840249b3f98d0ae130239e6f92f8 + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.2.tgz + version: 14.3.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.1.0 + created: "2022-09-06T21:14:33.201316696Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:fde13d592dbe04bd08d4624159a2abad051feeee943bf545bbba4e6b4d32a792 + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.1.tgz + version: 14.3.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-09-02T11:18:49.288542513Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:98ff5fd41b61a18ec61abc086462c601b2a287b86af21bffe0544da1e32cd175 + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.3.0.tgz + version: 14.3.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-08-23T23:56:57.816427494Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:79091547ef2aabf3aac51697a714fa687261fd130e482fd0ab3c2e46bbca788f + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.2.1.tgz + version: 14.2.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-08-23T00:45:44.684359589Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:ab87988ed8e2a19fa1f466ee41f137ebb27441f641616f44d813f7dd9fb79b8b + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.2.0.tgz + version: 14.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-08-18T00:23:33.374183179Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:63f0f24f9c20d602b7b272356b6afb6bab96356714148d4a804f058b461de29b + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.18.tgz + version: 14.1.18 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-08-09T04:39:12.751998908Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:0c8ed7a09e950ad949ba965fd8f8f8bd1cf8940db64775ae1ebd116bdae529b7 + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.17.tgz + version: 14.1.17 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-08-06T03:08:24.194942813Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:1bacc4a48faef34f0fb13cee27d16cc55491f01e15c7851c1d9afc6b9d9309ef + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.16.tgz + version: 14.1.16 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-08-03T09:35:29.147266183Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:fce2f823edce8bebccf83bad152183abb83174f0850b0695967d6bf0717cdd8b + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.15.tgz + version: 14.1.15 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-08-02T08:56:33.025295474Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:91c0998ca53f4556bd7855e1522a9f6a77aeed2292e9dedf2bb3a4b4a64c38a1 + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.14.tgz + version: 14.1.14 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-07-12T18:55:56.406936683Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:4f4b081fac9a0ba9e24fe49888a311668862f7d818500c67e65ce0f32bd69343 + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/bitnami-docker-jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.13.tgz + version: 14.1.13 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-07-10T09:36:01.608167988Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:b23382fbe9cc8f85e789f96640de0511a06961c3c09e2cd1d1f166a82c533d43 + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/bitnami-docker-jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.12.tgz + version: 14.1.12 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-07-01T10:15:30.321167157Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:6e22aa76139f26409950ac53d5875e63b0f268f84dcad2df6f9ac3e9cf08706d + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/bitnami-docker-jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.11.tgz + version: 14.1.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-06-10T17:11:01.390317878Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:c0decf2ba0a463409671d2409552b9162002e996a132a258577eaf1d1b90cbbe + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/bitnami-docker-jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.10.tgz + version: 14.1.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-06-08T10:50:12.728447947Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:091d9878f98723f5b942cb51c649584efe40f975cb9d9eadc27cbb85a3d9d439 + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/bitnami-docker-jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.9.tgz + version: 14.1.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.2 + created: "2022-06-03T11:31:32.641689248Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:4648738925d67214e5688afbd97bdfc5e88c449fd93b4eac6b20391820e06827 + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/bitnami-docker-jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.8.tgz + version: 14.1.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.0 + created: "2022-06-02T00:12:45.982389745Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:48b2159f318ff1bd8ae90476090ff78dcea910e7dafd0d06cb2aa756eb6aef4b + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jasperreports + sources: + - https://github.com/bitnami/bitnami-docker-jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.6.tgz + version: 14.1.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 8.0.0 + created: "2022-06-01T05:36:59.520351741Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JasperReports Server is a stand-alone and embeddable reporting server. + It is a central information hub, with reporting and analytics that can be embedded + into web and mobile applications. + digest: sha256:ffe33971f5f37de890e702942f3896274033319ecaadfabfdea6cc97d2f573a7 + home: https://github.com/bitnami/charts/tree/master/bitnami/jasperreports + icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-220x234.png + keywords: + - business intelligence + - java + - jasper + - reporting + - analytic + - visualization + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: jasperreports + sources: + - https://github.com/bitnami/bitnami-docker-jasperreports + - http://community.jaspersoft.com/project/jasperreports-server + urls: + - https://charts.bitnami.com/bitnami/jasperreports-14.1.5.tgz + version: 14.1.5 + jenkins: + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.462.1-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.462.1 + created: "2024-08-07T15:40:06.141059092Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 604b2a7487abd6d02c1e4ea350df9924901f45b44d45eda1b9ec2ba72d25f40d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.19.tgz + version: 13.4.19 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.3-debian-12-r8 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.3 + created: "2024-08-06T18:26:37.542004264Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 66a28d61b057c287bfd5eb4c7d7e00f7232752745ecc3a7adb3b8804e279b31a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.18.tgz + version: 13.4.18 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.3-debian-12-r7 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.3 + created: "2024-07-29T19:06:14.709592617Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 7d3c60e13ab1906f2686c53d968278b67049434cb7cf81c71ac7cddfd53360f4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.17.tgz + version: 13.4.17 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.3-debian-12-r6 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.3 + created: "2024-07-29T18:41:46.28853798Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 956fe22290b50402108333db9316e80711ee3ace4c67792c4537d43d6266a502 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.16.tgz + version: 13.4.16 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.3-debian-12-r5 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.3 + created: "2024-07-29T11:37:27.21665663Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 40999cb5c998110d58b3800c8ae570f1cebd23044a624f914389bbbc9f145b39 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.15.tgz + version: 13.4.15 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.3-debian-12-r4 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.3 + created: "2024-07-29T11:07:28.472541988Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 02301b8a76646a775830eb68eba2d3dcb9939e1b649278f7e3bee452a06bc74d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.14.tgz + version: 13.4.14 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.3-debian-12-r3 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.3 + created: "2024-07-25T05:07:10.487761753Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 1db95fc872fa6b583947ab6392a046e8b60541112163ff9d95ce8835c38e5f2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.13.tgz + version: 13.4.13 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.3-debian-12-r2 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.3 + created: "2024-07-24T06:06:31.336194114Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: b36e29dddd279d6d107b7ed58e63bab8480b7dfc081e1ef1d0c33b41ddd6ae8d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.12.tgz + version: 13.4.12 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.3-debian-12-r1 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.3 + created: "2024-07-24T02:42:31.070966972Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 8924965ab648c30fe3b5859212bc3ead6a7cbbb5c16f2567a41c2831aaf18795 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.11.tgz + version: 13.4.11 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.3-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.3 + created: "2024-07-18T08:44:37.370886103Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 2db54e5584d7e0572b3f14ca14961689b10dcf5e4ea68fb58cd6340ae315a149 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.10.tgz + version: 13.4.10 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.3-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.3 + created: "2024-07-10T19:44:06.534196509Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: d25a0689de800a2c74f093c3e6d4619159857465b386953f16aeb1010645c0d7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.9.tgz + version: 13.4.9 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.2-debian-12-r3 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.2 + created: "2024-07-05T12:06:11.460493864Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 9656d5af8a7a6440adc206a1dfebbc294ca83ae6b0a60c7c7da3e5e2a75d28e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.8.tgz + version: 13.4.8 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.2-debian-12-r2 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3256.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.2 + created: "2024-07-03T07:47:09.476280133Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: a91a274cc1c7025da109c74182bb859a5da10288c89eee0341c4cb41b66c3acc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.7.tgz + version: 13.4.7 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.2-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3248.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.2 + created: "2024-06-18T12:09:56.075942144Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: c75722c1c442af8e30fea47218437376eeb786f6009ffd91d245bddde5af1005 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.6.tgz + version: 13.4.6 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.2-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3248.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.2 + created: "2024-06-17T12:43:05.618665928Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 5188045d9420b2ed41dc0508c3858b5d992e874036723e17a169a7c3e8eb9a77 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.5.tgz + version: 13.4.5 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.2-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3248.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.2 + created: "2024-06-12T19:34:55.671832507Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: d8656380ceb797122aa6e2b735648236122577fd51692ec2751cd098e32efacd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.4.tgz + version: 13.4.4 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.1-debian-12-r2 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3248.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.1 + created: "2024-06-06T17:48:05.916420124Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 403923ca9e816eba6d8fbbd1560003c930be8c9748d79de4c07c9b17dffe482b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.3.tgz + version: 13.4.3 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.1-debian-12-r2 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3248.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.1 + created: "2024-06-06T16:31:18.481358909Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: a7dc8a0fe519542bd2e1d846f0f68d0fb6d8a6774e044df4c7a71a1ee35e2b88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.2.tgz + version: 13.4.2 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.1-debian-12-r1 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3248.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.1 + created: "2024-05-29T09:16:01.549088622Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: c76ba7ce34c212856258c25e919f6524b0f4a8787c77eba59c0ffd431f042c96 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.4.0.tgz + version: 13.4.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.1-debian-12-r1 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3248.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.1 + created: "2024-05-21T14:17:33.788902176Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: e09e848cebb61a691bb8154980c94398f3bdb284a1666935530110c6a70753b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.3.0.tgz + version: 13.3.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.1-debian-12-r1 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3248.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.1 + created: "2024-05-20T08:04:19.834888017Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 20d1391e76d510fce0df9826f0d5f505bf4e84ea2d762ccc916e768f6fc87489 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.2.0.tgz + version: 13.2.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.1-debian-12-r1 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3248.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.1 + created: "2024-05-18T01:33:43.212520775Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: ab522d2729402f3d2acf15209444e91f126af7a56af3053026ec3ad4a28036d9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.1.5.tgz + version: 13.1.5 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.452.1-debian-12-r1 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.452.1 + created: "2024-05-15T15:35:44.704856236Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 2feb6b51b71c340bbacaa29a666f18d742c9051abea4d7ed4ff6fc85bf16424c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.1.4.tgz + version: 13.1.4 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.3-debian-12-r6 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.3 + created: "2024-05-14T05:12:03.461324456Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 9da35f24b4574a0ccf8e3104ce49047b5a35730a8f5c9cb4ff046a54f2342042 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.1.3.tgz + version: 13.1.3 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.3-debian-12-r5 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.3 + created: "2024-05-08T00:12:17.891324876Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: e41f6e3bf37edbd935bc6808b3379ae4e296ec5493878b259a67b24d254969f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.1.2.tgz + version: 13.1.2 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.3-debian-12-r2 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.3 + created: "2024-05-02T02:08:46.228635615Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: f32e2e03c2972b679e04bc661d778c1422f77ac0f8e3d069e1cee610674b012b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.1.1.tgz + version: 13.1.1 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.3-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.3 + created: "2024-04-23T13:31:33.691836841Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: c1571a755c1b24bbfa5f07905b10b6a903dc1fdbcb097935f0aad70019c5b62e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.1.0.tgz + version: 13.1.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.3-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.3 + created: "2024-04-17T20:35:30.143231484Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: a5169b55010207fcc675d10d6aedaa545006b1c751ece8a0372fddd2c73dec5c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.0.2.tgz + version: 13.0.2 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.2-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.2 + created: "2024-04-15T11:50:24.800125444Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 00a1e041d6a20ed998d4bffc1a0d9bc768e4bdfe184bb771f616ebb0b367c28c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.0.1.tgz + version: 13.0.1 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.2-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.2 + created: "2024-04-01T11:21:45.813816006Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: b32100b120b80db24b9cd180b2f960724206e8be709292a9e8ca16ab3537e4f0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-13.0.0.tgz + version: 13.0.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.2-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.2 + created: "2024-03-20T18:18:43.448289808Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 28c04b54c75690e524dc456281ed71e63f1e79a29aa7eb26816116cf4bc8ef37 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.11.1.tgz + version: 12.11.1 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.1-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.1 + created: "2024-03-06T15:37:43.334631682Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 12ef945a19bb698e50d45db47e899a8f8588d137e983571991dc0791aa519304 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.11.0.tgz + version: 12.11.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.1-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.1 + created: "2024-03-01T09:59:00.41981581Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 2a61da7ed729b46c155030159c676cd8521d6b1edb6583ae14d12f53d156e01a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.10.1.tgz + version: 12.10.1 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.1-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.1 + created: "2024-02-27T12:54:03.706190285Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 0528d0559fb6dbdcd52a5050109305539fd222b1025e50d7f9bf57a712c34cc1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.10.0.tgz + version: 12.10.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.440.1-debian-12-r0 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.440.1 + created: "2024-02-26T15:21:47.195499088Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 69071fc3a7bde9f8bc74a7d1fc8b28bb9e560e527df396b82229cd0503895079 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.9.2.tgz + version: 12.9.2 + - annotations: + category: Infrastructure + images: | + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.3-debian-12-r9 + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.3 + created: "2024-02-21T14:34:29.579374948Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 12e3c53655fd8213a32980095921956f3372327fb17095c60d082f0f2f11f3b9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.9.1.tgz + version: 12.9.1 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-11-r5 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.3 + created: "2024-02-15T11:33:22.920296546Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: e147e7876ff2bfa7d7c842d6967044441904b3122e25c6d393b771940694f73a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.8.0.tgz + version: 12.8.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-11-r5 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.3 + created: "2024-02-13T17:06:53.428007437Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 0ee6b33c142d9f7d7a784f31cae5a6dff138e18a080815decb8f5d1ffaa3ada3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.7.0.tgz + version: 12.7.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-11-r5 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.3 + created: "2024-02-03T02:43:45.748585307Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: f0cfe70af94c61a1fb31a6e23cf2f3db443e684ebe5540f0015e1695fe9f426f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.6.7.tgz + version: 12.6.7 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-11-r5 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.3 + created: "2024-02-02T17:30:23.131008265Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 56351c73e5bb09938ee99807cbcb8ff158fdc0898c565836377903a54abb9837 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.6.6.tgz + version: 12.6.6 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-11-r4 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.3-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.3 + created: "2024-01-30T15:16:00.573117532Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 1516bf686569409928beef17c5152df73375c182b002e5af4c6ff4b3fd2bd979 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.6.5.tgz + version: 12.6.5 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-11-r2 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.3 + created: "2024-01-29T08:46:43.797008907Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: cc0005c4d81856d336473de4d730356ec09124bca913891efa88fc7fa94dd0be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.6.4.tgz + version: 12.6.4 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-11-r2 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.3 + created: "2024-01-27T02:13:42.803891726Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 9a5c63701825455ed163d373636b4e75fc2dccfb8c21c683d29713f7a667bb07 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.6.3.tgz + version: 12.6.3 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-11-r1 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.3 + created: "2024-01-25T12:41:03.318464769Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 8d9cfb207e8f2a57b340d8662b2b888ecfa75609e56950530d390c4812dc70d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.6.2.tgz + version: 12.6.2 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.2-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.2 + created: "2024-01-19T11:00:40.799845562Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 803c546cc2e07c0534c61f3663a577362cd0bc19eea747c22fc3644f492cd1a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.6.0.tgz + version: 12.6.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3206.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.2-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.2 + created: "2024-01-18T06:25:51.634537235Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: e39e3d58c02c6868b8e2ed9d31fb587da94ddd41414f86b1372fc94973ec4be8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.5.1.tgz + version: 12.5.1 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3198.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.2 + created: "2024-01-17T08:58:05.994351366Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 729b929063e46014eaf92ed98c04288f6461f4eccbe95d8f6fd622c0c2d936b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.5.0.tgz + version: 12.5.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3198.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.2 + created: "2023-12-14T02:46:01.482424387Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 02c0ab89b78dc0f5c2e0588ebfbd53a6d6f0879b04b95680c0f2d6eab20caf7f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.4.8.tgz + version: 12.4.8 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3192.0-debian-11-r2 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.1 + created: "2023-12-07T20:09:13.199899022Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: ef1f293ae36a6737d58168219074283b6678f10343069d9b7d4f05f14ad0a6e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.4.7.tgz + version: 12.4.7 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3192.0-debian-11-r2 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.1 + created: "2023-12-07T19:45:20.079559337Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 7877506ee32941424578974fed979158a2c58a471b53ea0f96e8d53057b56265 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.4.6.tgz + version: 12.4.6 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3192.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.1 + created: "2023-12-05T12:22:58.883018612Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 83fa9e0df13a44fd81b25ffb2851b59f4d1c1f5ac72a7225a91ad3568302f07c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.4.5.tgz + version: 12.4.5 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3192.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.426.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.1 + created: "2023-11-22T16:17:47.79986022Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: ec699770e5452f1eacc0c7bc69e2b53ae4e49f3d09d9cf41a922392a6ea17b99 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.4.4.tgz + version: 12.4.4 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3192.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.426.1 + created: "2023-11-16T06:15:08.681611802Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 2a7564009ab977159acc9985010a2e17937f98e9263b236cc838786652ffb4f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.4.3.tgz + version: 12.4.3 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3192.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.3 + created: "2023-11-08T16:16:31.86592741Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 27c97974634f852eaf0831edd39c87716d6dace47efa27b1f595b53b95a4d22f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.4.2.tgz + version: 12.4.2 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3192.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.3 + created: "2023-11-02T15:15:44.568541678Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 617d7615625d9822fcc834d26045e525ef4971d80cf3e650ac9be9933c1583d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.4.1.tgz + version: 12.4.1 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3174.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.3 + created: "2023-10-26T13:44:12.442581219Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 7ade5f128573fd6ac5c8b8d65f867f2613db6efd2c0f5c5331bc66704825a5c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.4.0.tgz + version: 12.4.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3174.0-debian-11-r0 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.3 + created: "2023-10-18T23:43:56.284187572Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 1eef4a4975fa7a76d7e9fee06184a23843018492921303bbf01b0885eee23755 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.3.9.tgz + version: 12.3.9 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3148.0-debian-11-r44 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.2-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.2 + created: "2023-10-12T15:15:30.82707183Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 43f34a80ea1951db1588257266cfe07a739ce0dac8eaa816a1bcd3f5edbfa2aa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.3.8.tgz + version: 12.3.8 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3148.0-debian-11-r43 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.2 + created: "2023-10-09T22:34:42.327181311Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: e7e9beaac509835477e0ed6d01ea99e24c80a11d3406f157ef0f7401492303de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.3.7.tgz + version: 12.3.7 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3148.0-debian-11-r43 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.2 + created: "2023-10-09T19:33:41.707289607Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: e66406bcd21d72d73f79ca9fffafbbfa6937931730ac2285e7406b3543fb0aa8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.3.6.tgz + version: 12.3.6 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3148.0-debian-11-r35 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.2-debian-11-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r83 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.2 + created: "2023-09-29T22:00:32.473895209Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: d389ed57e77b4aea3e4230e9b9387b44d8fc2c9edefd3d55b5f9f6558d0555a2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.3.5.tgz + version: 12.3.5 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3148.0-debian-11-r26 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.2-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.2 + created: "2023-09-20T16:38:15.488543336Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 980a6411d3e4a4b3aa93c7f2caf2e1b7d2c973d381e39f00d0f5d9bf8dd6394a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.3.4.tgz + version: 12.3.4 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3148.0-debian-11-r26 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.2 + created: "2023-09-20T15:43:24.299736758Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 5936695fb5b87cd52e1214b515545946e467720a1a9d913d4f792938ca855236 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.3.3.tgz + version: 12.3.3 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3148.0-debian-11-r8 + - name: jenkins + image: docker.io/bitnami/jenkins:2.414.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r54 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.414.1 + created: "2023-09-11T14:23:29.003481798Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 5193d8786c62dc053624f238e509c448ce88919d5841939d85b09319f93dc7f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.3.2.tgz + version: 12.3.2 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3142.0-debian-11-r23 + - name: jenkins + image: docker.io/bitnami/jenkins:2.401.3-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.401.3 + created: "2023-09-08T12:55:34.578889039Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 2651dc8b97d156b98a61d80683a98ee24171ab2657ca1c47a9333cafefe587d2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.3.1.tgz + version: 12.3.1 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3142.0-debian-11-r23 + - name: jenkins + image: docker.io/bitnami/jenkins:2.401.3-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.401.3 + created: "2023-08-22T14:11:52.201638494Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: bcab39da275c4576f1ece381ca5137adf27c421a3f4d1c3c5a661cb173ff6acd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.3.0.tgz + version: 12.3.0 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3142.0-debian-11-r23 + - name: jenkins + image: docker.io/bitnami/jenkins:2.401.3-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.401.3 + created: "2023-08-21T18:52:04.975791261Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 9da646bfa80a23c5627e4042ace8346230434fd06fb77755dfd46c807ba99b1e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.2.9.tgz + version: 12.2.9 + - annotations: + category: Infrastructure + images: | + - name: jenkins-agent + image: docker.io/bitnami/jenkins-agent:0.3142.0-debian-11-r17 + - name: jenkins + image: docker.io/bitnami/jenkins:2.401.3-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.401.3 + created: "2023-08-17T17:04:58.57879626Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 66ebc3979a1499978ac2dbe8d6218e27dedb597375bff54a5411a19242f3c273 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.2.8.tgz + version: 12.2.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.401.3 + created: "2023-07-26T20:39:41.864307499Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 25a115d4af92ab70e51affd60f26ea14cd4cda98ad818e11512b2b72fbe668c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.2.7.tgz + version: 12.2.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.401.2 + created: "2023-07-25T18:35:05.352010284Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 1a4773eb9f8c689e7cd68585df61c8b7b8f6b41af279d163675a1395d47b183f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.2.6.tgz + version: 12.2.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.401.2 + created: "2023-07-21T14:31:26.259902455Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 9a493fd5262d077f59e8bef12a9e7f52b49cfae8f8f5f5d48b481c53b8df340f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.2.5.tgz + version: 12.2.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.401.2 + created: "2023-07-11T13:27:23.559380046Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 99dce7fab2c4175cb00c3bfa2731b1a4d679e9dad14d9155878aaac6b73f2fb1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.2.4.tgz + version: 12.2.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.401.2 + created: "2023-06-28T16:18:08.56077604Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 3c72c97bf0b616ed5c0686f9839b742eaefe0fd0bc0a57985f76707c95d9e197 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.2.3.tgz + version: 12.2.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.401.1 + created: "2023-06-15T12:24:13.444467758Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: ae14f46d98965f3145377b5ee435b89e530cda8a5029ad6ca9b415e60ee92ea4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.2.2.tgz + version: 12.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.387.3 + created: "2023-05-21T21:06:03.28320406Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: cf11b4d8fc91c8d5a9b3732955c02c681d1b9d718ab7fae9228506da6c994fa8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jenkins + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.2.1.tgz + version: 12.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.387.3 + created: "2023-05-09T15:32:51.000542019Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 230b04c350cc2c710276d67eaa3d5a977101756fbabe15fbcbe63bebfaa90c3a + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.1.2.tgz + version: 12.1.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.387.3 + created: "2023-05-04T06:47:56.335888133Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 9d122c376e21f0eee144030b17464415bc707ac2f0478cf85eca539c5df71664 + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.1.1.tgz + version: 12.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.387.2 + created: "2023-04-05T16:13:17.947124926Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: d7145f83cd8d26d620e32e46f4abf8b9aba9dc7839e6fc6b873bd8d65ed06c4e + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.0.4.tgz + version: 12.0.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.387.1 + created: "2023-04-01T13:03:26.61180442Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 0850a8a6d3c6b690185515bdff321d451a152353ad4d4150bbfc28c01e0ecf0b + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.0.3.tgz + version: 12.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.387.1 + created: "2023-03-22T09:22:45.259282968Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: fc8cf0e8e1e0b3da4127714ffdb2e27ce7f306ffcbd37b4543a7104f5d1bab55 + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.0.2.tgz + version: 12.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.387.1 + created: "2023-03-09T14:34:55.800607902Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 0678d764bc50b99f34adf099338f8df170f53a7ed4bc6c350843d077a1df08e5 + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.0.1.tgz + version: 12.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.375.3 + created: "2023-03-06T07:55:51.63650048Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 5ca878a53b952f18ed4b469299f21024782f8a72268257127aa15b27b46f10de + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-12.0.0.tgz + version: 12.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.375.3 + created: "2023-03-01T10:07:29.569573994Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: d0e0aa8938c433a0c7f83e31406fda0b7fbb000c57d0f41b4a12643737afefef + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.17.tgz + version: 11.0.17 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.375.3 + created: "2023-02-17T15:58:25.631022461Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: f022297236fdaecdcd7ac9e97aa4e9d8565ee437c398858dc8bb4411c8aa1c65 + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.16.tgz + version: 11.0.16 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.375.3 + created: "2023-02-09T18:00:40.080785898Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 48827177d294c8a90ae8564ebcaa6b8d526dc8e870ef949234aa9efdadbb3ec9 + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.15.tgz + version: 11.0.15 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.375.2 + created: "2023-01-31T14:46:03.40604115Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 1b9a252400c7dc9d6d4c357de860d8ba03ecefc011c0be96bbdb3fc398de6c38 + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.14.tgz + version: 11.0.14 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.375.2 + created: "2023-01-26T13:45:09.71911761Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: b5695bbed5f37d1c9d89abda3af589c93e37b3881bfb857f8944701793f0db4a + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.13.tgz + version: 11.0.13 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.375.2 + created: "2023-01-11T14:17:21.94966739Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: d4a5711a86ab9f8658798117a53cea7747f82c906a82ea81eb7ca1729c28740d + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.12.tgz + version: 11.0.12 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.375.1 + created: "2023-01-04T13:29:25.434182358Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: bd3c5bd7bc6a490cb048fac07b48d92c9818913cd9e8302b18547b99d07e59ef + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.11.tgz + version: 11.0.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.375.1 + created: "2022-12-05T13:24:24.29645675Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 211e1a9dfa9952f5c2c1cc5bafcd99a727d3bee5450a9881c661c5e58b432d0d + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.10.tgz + version: 11.0.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.361.4 + created: "2022-11-14T13:06:44.470579173Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: cd6f516388e2cfd4b5b073d46f0db74e9663e8f4f72661a786de905157f4a94c + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.9.tgz + version: 11.0.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.361.3 + created: "2022-11-09T19:01:38.648569193Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 8c79a1db42d4c9f5d673f7e34130d138c47456bac1f494d0b5cc8756efe8ed5b + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.8.tgz + version: 11.0.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.361.3 + created: "2022-11-02T18:43:19.532735683Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: e0040379bd2ab9fcbcc811e0d4995526afb1a1e181f994884b97842d2c280b61 + home: https://github.com/bitnami/charts/tree/main/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.7.tgz + version: 11.0.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.361.2 + created: "2022-10-05T14:56:58.8851088Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 178663e686820343dc1e511687b9d754af73b5bf80e011844c7be1a6152cdd98 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.6.tgz + version: 11.0.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.361.1 + created: "2022-09-27T10:58:09.902688646Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 5786f91d64c349b46c280b98644597e5c4f33d5f8be7fe2175ac2fb961a357d3 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.5.tgz + version: 11.0.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.361.1 + created: "2022-09-20T12:53:30.184730184Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: c7fe5f372295362bed8658a7143af520d9aeb259ad0bc4728b3a26a422e5ec32 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.4.tgz + version: 11.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.361.1 + created: "2022-09-20T08:10:09.258890501Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: ff6dda4e5ee00933a86c484d901e3cff4b1d8dfa60b572af06d629b2faedfcf5 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.3.tgz + version: 11.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.361.1 + created: "2022-09-16T21:20:37.730245107Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: d002fd2978335b76bf12505748027063a7ef1005930cfda9d43b26e018b8b6d3 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.2.tgz + version: 11.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.361.1 + created: "2022-09-09T08:38:08.800764744Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: fb175866197f184ec9c713a908db3d4c50d6372ecbf76e7d165b5b9c72c174ae + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.1.tgz + version: 11.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.346.3 + created: "2022-09-01T11:34:39.678656115Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 222ae08bec5bed2c5b587e233e1aef9524f0df35e147051e25a6208252c1d3c5 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-11.0.0.tgz + version: 11.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.346.3 + created: "2022-08-23T22:01:26.383227754Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 5ff09b25a835991737bac637701e66c54b1e51e8dd924f5ac7264d5bc7bba8d2 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-10.3.1.tgz + version: 10.3.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.346.3 + created: "2022-08-22T13:30:26.55271623Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: f7a94d47fd20438e742c723c82bf19cc46d5e339c85220ae229ea1566cab72fc + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-10.3.0.tgz + version: 10.3.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.346.3 + created: "2022-08-18T08:04:36.5985363Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: b65226823984d586848737c03ba7e8d6cfce7e367d712cb68f226258d88cfa60 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-10.2.7.tgz + version: 10.2.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.346.3 + created: "2022-08-16T16:07:15.100766831Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: bcccadf20248b08be1c7b363e778f3ee723e2e6eb1d437f439b2b2eb0a20f35c + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-10.2.6.tgz + version: 10.2.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.346.2 + created: "2022-07-26T11:28:51.216475864Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: 455cb8ce76d9abbae829783b5bead25998f2d885e1ea6b83b424edcc6bf0d351 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/bitnami-docker-jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-10.2.5.tgz + version: 10.2.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.332.3 + created: "2022-06-10T17:57:34.395276472Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: sha256:ede8ede605865ea6c6a9ad51d183311936e0e247e2bb5bf801e00e31683aecc9 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/bitnami-docker-jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-10.2.4.tgz + version: 10.2.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.332.3 + created: "2022-06-08T19:06:54.228107349Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: sha256:c481d2274b99900c9a1d8b4c572ffd686ebc9ed8aadc5ba9be796fc653a06402 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/bitnami-docker-jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-10.2.3.tgz + version: 10.2.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.332.3 + created: "2022-06-06T20:53:09.823879793Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: sha256:05cc0926250351e1f8a4fd0dde1539d2685a0a0133ac38233e03d7b5772c2763 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/bitnami-docker-jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-10.2.2.tgz + version: 10.2.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.332.3 + created: "2022-06-03T04:22:23.562318678Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Jenkins is an open source Continuous Integration and Continuous Delivery + (CI/CD) server designed to automate the building, testing, and deploying of + any software project. + digest: sha256:0e791ec42df7f61b0b9af0aa9d5f64d058570e0beaa6455446c97cf14769a096 + home: https://github.com/bitnami/charts/tree/master/bitnami/jenkins + icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png + keywords: + - jenkins + - ci + - cd + - http + - web + - application + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jenkins + sources: + - https://github.com/bitnami/bitnami-docker-jenkins + - https://jenkins.io/ + urls: + - https://charts.bitnami.com/bitnami/jenkins-10.2.1.tgz + version: 10.2.1 + joomla: + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: joomla + image: docker.io/bitnami/joomla:5.1.2-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.2 + created: "2024-08-05T09:59:20.223131402Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + deprecated: true + description: DEPRECATED Joomla! is an award winning open source CMS platform for + building websites and applications. It includes page caching, page compression + and Let's Encrypt auto-configuration support. + digest: a35898e731a69e59a4c308782ad4dc46203c66a3d3ce1fe467631a89a67dfd5c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-20.0.4.tgz + version: 20.0.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: joomla + image: docker.io/bitnami/joomla:5.1.2-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.2 + created: "2024-07-25T05:25:06.653253719Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: f61548db591930d6f3efe0bcdd4c02b831c0758f20cc551ae276a9a7eef26d0d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-20.0.3.tgz + version: 20.0.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r5 + - name: joomla + image: docker.io/bitnami/joomla:5.1.2-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.2 + created: "2024-07-24T05:51:56.167535188Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 35a4a0a4ba5957c30c040e69d7a0a101d02209d165e94829fc1597208a87d1c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-20.0.2.tgz + version: 20.0.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: joomla + image: docker.io/bitnami/joomla:5.1.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.2 + created: "2024-07-18T08:45:01.748652828Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 2ad14bd85214a26f5f14600e861ebdeae2e378b4797b74cd1c7205755193f855 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-20.0.1.tgz + version: 20.0.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: joomla + image: docker.io/bitnami/joomla:5.1.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.2 + created: "2024-07-12T12:16:36.589872527Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 48afc58d4f8523d0464c704ed89674f1a2a6c08456413d4fc73841dfe4e0436a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-20.0.0.tgz + version: 20.0.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: joomla + image: docker.io/bitnami/joomla:5.1.2-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.2 + created: "2024-07-09T19:45:59.995019146Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 1f5c8919be4155ada5563a84a94253283c52b232f26960e009b67fb872be53a0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.2.7.tgz + version: 19.2.7 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: joomla + image: docker.io/bitnami/joomla:5.1.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.1 + created: "2024-07-03T07:40:38.079560068Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 59ee957e3175cb6598964810f38bffebf9d0555e31daec4cca0e55aca98db7db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.2.6.tgz + version: 19.2.6 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: joomla + image: docker.io/bitnami/joomla:5.1.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.1 + created: "2024-06-18T12:02:31.153834955Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: d3019200fce5f2addf6a0fdf75301a38f8bb83bee5b236f86931786f05f56bdf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.2.5.tgz + version: 19.2.5 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: joomla + image: docker.io/bitnami/joomla:5.1.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.1 + created: "2024-06-17T14:03:34.45348817Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 63108a57da1877dbc585e3104768d8f15e6c91c1618a3795945222fba3a439b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.2.4.tgz + version: 19.2.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: joomla + image: docker.io/bitnami/joomla:5.1.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.1 + created: "2024-06-06T15:50:41.457198123Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: f5261080dfdae07e81e76f0e226854e32cc088a5cc2d8b661b9abe01212fd27b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.2.3.tgz + version: 19.2.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: joomla + image: docker.io/bitnami/joomla:5.1.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.1 + created: "2024-06-05T14:15:10.563164223Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 83ec52df4aa73d3a29ac1b00a16db6dce52d2da4b475a8c23e0d408698f42f2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.2.2.tgz + version: 19.2.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: joomla + image: docker.io/bitnami/joomla:5.1.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.1 + created: "2024-05-30T07:44:41.26762186Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 43aa81609b646d8c138f84cb632d61f19f1f2baa2a2e86ff4651533e73e05a0f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.2.0.tgz + version: 19.2.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: joomla + image: docker.io/bitnami/joomla:5.1.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.1 + created: "2024-05-28T18:05:05.553550822Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 4ce2f3b6a9204590a15c1df3313e5cefe41d59ae90101fdbae05c7a0766b07e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.1.1.tgz + version: 19.1.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: joomla + image: docker.io/bitnami/joomla:5.1.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-05-21T14:17:06.890007217Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 4779a6cd28e7b12a47a2331ba1869842d8179b4978ca453a0fba5383d10f28e6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.1.0.tgz + version: 19.1.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: joomla + image: docker.io/bitnami/joomla:5.1.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-05-18T01:33:00.066926707Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: f75928f050aa830b871932e48bfbbc08ca47c777ff6d261312f18ba062ecb801 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.0.5.tgz + version: 19.0.5 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: joomla + image: docker.io/bitnami/joomla:5.1.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-05-16T10:52:09.044743701Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 8d5069892115dd8b4564216ed6779f509c90705f3ba72b96b7af77462c7a37ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.0.4.tgz + version: 19.0.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: joomla + image: docker.io/bitnami/joomla:5.1.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-05-14T05:11:46.774638005Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 131927c0b6e0cb82f7bd34c1507c9f6d3a117b25336ab5dc1d36aa25c994e61b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.0.3.tgz + version: 19.0.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: joomla + image: docker.io/bitnami/joomla:5.1.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-04-19T10:05:53.047328027Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 78ebb4c64f77f690729d0752b58649eb3b7b82d01d3d7dc3d449a04e6536a8f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.0.2.tgz + version: 19.0.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: joomla + image: docker.io/bitnami/joomla:5.0.3-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-04-08T22:18:12.852445457Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 3f2eb0623f26c6d09c5215e293ad233777bda5c32f2b55e9df71802233b5b6f0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.0.1.tgz + version: 19.0.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: joomla + image: docker.io/bitnami/joomla:5.0.3-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-04-03T11:27:10.969423599Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: c44d9281070002a0cd29b95dfa4e1de840f0a2794d58add07e8c0471b69e2efc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-19.0.0.tgz + version: 19.0.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: joomla + image: docker.io/bitnami/joomla:5.0.3-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-04-02T10:29:34.530800272Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 5c366c8b693595f90d098dea0127b652fcb0b208e0ccbec120a115f97819c5eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.5.2.tgz + version: 18.5.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: joomla + image: docker.io/bitnami/joomla:5.0.3-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-04-01T17:50:03.872860199Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 93c34dfb98f732917edefd7d51b773e7d0b0bca3d6e576bd510761e8c523c541 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.5.1.tgz + version: 18.5.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: joomla + image: docker.io/bitnami/joomla:5.0.3-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-03-06T12:25:37.443232026Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 9172ecbcc6b15d3e1ac419ea46c6d58f929042bb28a574d70fd1fc5eb2f3beba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.5.0.tgz + version: 18.5.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: joomla + image: docker.io/bitnami/joomla:5.0.3-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-02-21T18:00:56.673510741Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 17c28409ac9281f7bf849ab0b4e674221e289a71cdab48282bc9f03bfff9dbf9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.4.2.tgz + version: 18.4.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r6 + - name: joomla + image: docker.io/bitnami/joomla:5.0.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-02-21T14:39:36.282878994Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 96926d046087caf13f6f3cd0f673085dd6b38960cef6c7d1979a8029eed8e666 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.4.1.tgz + version: 18.4.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: joomla + image: docker.io/bitnami/joomla:5.0.2-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-02-16T13:21:09.688332182Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 1f8256687c9996be058cce85e7f032ff0bd95d55d6b60f9a18f93f4c9294fae7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.3.0.tgz + version: 18.3.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: joomla + image: docker.io/bitnami/joomla:5.0.2-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-02-02T17:16:01.19215616Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 585ea07808697d0d34a3be2f6d7d2984064c88c096512acae45ba7788c4a99d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.2.3.tgz + version: 18.2.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r4 + - name: joomla + image: docker.io/bitnami/joomla:5.0.2-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-01-30T15:20:52.130197487Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 461c4ef75c44d78708f8b43e738fd7310e1962b5d08085963a31845121b3aa69 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.2.2.tgz + version: 18.2.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: joomla + image: docker.io/bitnami/joomla:5.0.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-01-26T11:09:51.054454386Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 727075d2d34c7a0d2109d5745afa04f38e646ac61378df2ddf1fcb226fcf2dee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.2.1.tgz + version: 18.2.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: joomla + image: docker.io/bitnami/joomla:5.0.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-01-22T13:32:09.355542444Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 46d2dbc3cfc239710685b66b02093a4d23e0a00f043088609b80c7235063d28e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.2.0.tgz + version: 18.2.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r0 + - name: joomla + image: docker.io/bitnami/joomla:5.0.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-01-17T11:58:46.088981395Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 308a87ca5af693490ee8ea0e771f95affe86263fd56a6d6a9122a5c91294a822 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.1.0.tgz + version: 18.1.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r0 + - name: joomla + image: docker.io/bitnami/joomla:5.0.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-01-09T21:13:01.519934573Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 66a005d2dfce1363aae76e82c6806d1d54be085a0a458ab3084b7b5c23a74958 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.0.1.tgz + version: 18.0.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: joomla + image: docker.io/bitnami/joomla:5.0.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.1 + created: "2023-12-20T11:24:54.172216257Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 29cdd99c81119b4506a7343619ddb8affbcfc3f65deec27894aff91236a07ef7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-18.0.0.tgz + version: 18.0.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: joomla + image: docker.io/bitnami/joomla:5.0.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.1 + created: "2023-12-20T08:32:45.312923272Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: be08e0707fb9acdf7b109577764f3752988cae46917e81101d14a73b8e5366ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-17.1.4.tgz + version: 17.1.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: joomla + image: docker.io/bitnami/joomla:5.0.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.1 + created: "2023-11-28T20:05:08.401969599Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: a136f6adb7cef3153e77ee2463c60bb37d84b9b0792eae7164109e4a5070d260 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-17.1.3.tgz + version: 17.1.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: joomla + image: docker.io/bitnami/joomla:5.0.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.0 + created: "2023-11-21T20:20:50.226416956Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 1ca7bc6774d4a28e915366e7df2a8ce7ecf36c2a5b2f62afeafcbaad516ae28b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-17.1.2.tgz + version: 17.1.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: joomla + image: docker.io/bitnami/joomla:5.0.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.0 + created: "2023-11-08T16:33:35.597195238Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: b34ccc4818fca79b2debdd31d9bc13bf9959efd0455c4bcb9d53308649dc239e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-17.1.1.tgz + version: 17.1.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: joomla + image: docker.io/bitnami/joomla:5.0.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.0 + created: "2023-10-31T13:11:19.823757126Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 38974f1bc6d73749e258fe5414cc8f2a1c013aa029817a5816be1bf737b8b67d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-17.1.0.tgz + version: 17.1.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: joomla + image: docker.io/bitnami/joomla:5.0.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.0 + created: "2023-10-23T11:44:19.02933217Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 477d7f4a162c823ddcbb34ba8994665e164b3655c5241bd35635cacaa8140060 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-17.0.0.tgz + version: 17.0.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: joomla + image: docker.io/bitnami/joomla:4.4.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.4.0 + created: "2023-10-17T21:11:34.134334843Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 3c6d76773fa29cafb598e7f6b9efcdb51c5382585fe65930e7c948f181ab5f97 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-16.0.1.tgz + version: 16.0.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: joomla + image: docker.io/bitnami/joomla:4.3.4-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.4 + created: "2023-10-11T13:23:50.521711877Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 1cb1571fbd3571b1f595efe1c2936d774c15d5512f5a262ddacb9215c5e04daf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-16.0.0.tgz + version: 16.0.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: joomla + image: docker.io/bitnami/joomla:4.3.4-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.4 + created: "2023-10-10T11:25:22.16871478Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 9de7319ecb9b5fdfa3ee249dfcc764d2b92956a7979659fbbdbd4db1673977c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-15.1.5.tgz + version: 15.1.5 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r5 + - name: joomla + image: docker.io/bitnami/joomla:4.3.4-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.4 + created: "2023-10-06T03:07:57.130952188Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: b4450e08c45b6e734cb9a65c1bf2391bf6d1e191d945610ce0fbd506aa4851ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-15.1.4.tgz + version: 15.1.4 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r0 + - name: joomla + image: docker.io/bitnami/joomla:4.3.4-debian-11-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.4 + created: "2023-09-30T17:50:56.336957755Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 23cf85f1b2f98aa14b86de25d9dd47599f60699a67128480c827eeb2bac34e83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-15.1.3.tgz + version: 15.1.3 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r32 + - name: joomla + image: docker.io/bitnami/joomla:4.3.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.4 + created: "2023-09-08T12:39:33.784929759Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: e8088efe2ff106eb0b29ec2147a6f139a9c73a7080732a206ba806ea6ba5be93 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-15.1.2.tgz + version: 15.1.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r32 + - name: joomla + image: docker.io/bitnami/joomla:4.3.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.4 + created: "2023-08-31T17:25:34.18961024Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: ce9efd0077f1675c7375f9eca684aa1e6aa2af99eb64a1c60224d01188cf0332 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-15.1.1.tgz + version: 15.1.1 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r17 + - name: joomla + image: docker.io/bitnami/joomla:4.3.3-debian-11-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.3 + created: "2023-08-24T08:26:02.458571911Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 6e36142b4012a5ca439b380be0047bc00124b685082730b2e0a9a69b1f185df6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-15.1.0.tgz + version: 15.1.0 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r17 + - name: joomla + image: docker.io/bitnami/joomla:4.3.3-debian-11-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.3 + created: "2023-08-17T18:13:54.516081352Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 0163f34da635bcc740d8f0e427c9100b3b0ae6b3774741335953d9f14b59be53 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-15.0.2.tgz + version: 15.0.2 + - annotations: + category: CMS + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r2 + - name: joomla + image: docker.io/bitnami/joomla:4.3.3-debian-11-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.3 + created: "2023-08-03T11:27:26.089748598Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: c2c3130c740f5f354f74a80883ddc333a717c5285e4b2fdc093c3e36ea87b8b3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-15.0.1.tgz + version: 15.0.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.3 + created: "2023-08-01T14:41:25.836371678Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 57a844f2152630e714f3ec16da50c45a9d27f1d361fc67a2c1bc418bdc2b19c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-15.0.0.tgz + version: 15.0.0 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.3 + created: "2023-08-01T08:26:42.575930102Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: acb206d5ca57f623579002d4f7e1020d3866e89165a0b3e66a2a7ecbbd9879ed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-14.1.8.tgz + version: 14.1.8 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.3 + created: "2023-07-25T14:06:34.47647709Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: f59c00b4eee2229b0f7a74c22e936ebfc26147ecc9fe0bb6d8f170376cb425ca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-14.1.7.tgz + version: 14.1.7 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.3 + created: "2023-07-15T09:21:47.481622952Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 95bc68dc7c0c1c2b4d86c36ce2790619e4c89f3082f591e3aae4d513a958246d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-14.1.6.tgz + version: 14.1.6 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.3 + created: "2023-07-12T05:13:10.326829854Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: cf2d18539317017813fa2ef89a05235143b230e28959dfc3df0361ec84337484 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-14.1.5.tgz + version: 14.1.5 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.2 + created: "2023-06-29T20:02:40.433640117Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: f914a2f20cf7f96f274b94a6d0b9767e95f7bbd61f82096b5e2e9f3f4c6e0cd1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-14.1.4.tgz + version: 14.1.4 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.2 + created: "2023-05-30T19:51:42.497850493Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: f49f2b0b66f565c8ac67ef44d08fab9c94f34163e41739d0a317a02551a19fb5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-14.1.3.tgz + version: 14.1.3 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.1 + created: "2023-05-21T21:12:33.687385435Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 6fc43d5a23e1bfce3c2337e16261e4eea4d1fac56542aec4c46260d46237464a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-14.1.2.tgz + version: 14.1.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.1 + created: "2023-05-11T14:27:29.026714171Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 854239407d3665d1eb13d29727562ee873f399e1397804bcdd31ab4cc22f0050 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/joomla + urls: + - https://charts.bitnami.com/bitnami/joomla-14.1.1.tgz + version: 14.1.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.1 + created: "2023-05-02T23:23:03.11750894Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: b7ad9214bb90aa7af99c5eece179478b62a91a7889feb252919c1f5a3beaa749 + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-14.0.1.tgz + version: 14.0.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.0 + created: "2023-04-21T16:32:26.556476634Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: aeb690607d5700515975db390326bdaf7dfec249b09208368491f3c315826df9 + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-14.0.0.tgz + version: 14.0.0 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.3.0 + created: "2023-04-18T18:58:54.207249608Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: de59f8c6eec0a00c59f61568187fc6c5ffc0ac03c50046e82bc892326c550599 + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.20.tgz + version: 13.3.20 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.9 + created: "2023-04-01T13:15:20.84401361Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 26556cec4cf4067013f13d7ff21692000bc68b60f29d540a5a26d3f48f15d352 + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.19.tgz + version: 13.3.19 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.9 + created: "2023-03-22T05:14:00.069830761Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: c9f00ce45dd123e30af139fc825f27fe3b8d0f06f29ca828f107ac83154a9deb + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.18.tgz + version: 13.3.18 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.9 + created: "2023-03-14T17:01:38.254406205Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: adba33f5a1eb35d22c2143359e6ed49da6b5074baa6c7d3b3b30fd3f3b66c19d + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.17.tgz + version: 13.3.17 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2023-03-01T10:07:13.940399664Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 5b5836508dbdde201f850b4287f7f0175fa8c338978cd326af9ec99a558b660b + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.16.tgz + version: 13.3.16 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2023-02-17T16:42:50.101392244Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 4ecc5226f435a1f45b9eebde303ef30ae3f5ead5461c3bbe54b5dc38ecdecbfe + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.15.tgz + version: 13.3.15 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.7 + created: "2023-02-01T18:24:24.639125608Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 7564722aeb0b5f1a6706abfc4b9cac5a5ce8e42ec18f6f10a1a261d0934789e3 + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.14.tgz + version: 13.3.14 + - annotations: + category: CMS + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 4.2.6 + created: "2023-01-12T17:44:22.925879595Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 953a10b6ded24cccee06223d905dd6b8d98ace58cbedc193ee34222da527c8e3 + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.13.tgz + version: 13.3.13 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.6 + created: "2022-12-13T17:33:18.919343948Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 6a630167cf29db5782e0d045aa4d186a8db0957af5af1716992bb72644aeef26 + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.12.tgz + version: 13.3.12 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.5 + created: "2022-12-09T01:56:20.939354782Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: ce45bccc9fd83b78a8670f1da420b2b09a6a1c5e8c1d74d18b168d98b3520e54 + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.11.tgz + version: 13.3.11 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.5 + created: "2022-11-09T01:56:40.041072274Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 8e6aa5a74e0894475dd6cdd59d4f0a9f15a148d1ca50a64df63ab6ebbfcfc714 + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.10.tgz + version: 13.3.10 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.4 + created: "2022-10-31T14:57:07.487130872Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: deb722d7a04087bb9d497d31229b59e8b081b75a4a886e856444241706703c29 + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.9.tgz + version: 13.3.9 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.4 + created: "2022-10-28T08:10:10.297452207Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: d01038af2ffaf71fcf3f5e5143dee74775990063d07b46544946d3fa7287164a + home: https://github.com/bitnami/charts/tree/main/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.8.tgz + version: 13.3.8 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.3 + created: "2022-09-27T23:40:07.886121863Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 5d6a52029c3b5b4d654b058c99206797d5aa4564b9602cc10cce6e424987c4bb + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.7.tgz + version: 13.3.7 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.2 + created: "2022-09-21T09:31:46.739781683Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 89eae789e18b9c6f662222fd1ed57be946125d7b9380fe30ae515ce5e025afbc + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.6.tgz + version: 13.3.6 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.2 + created: "2022-09-03T08:17:06.092685037Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: e9c21c73fe9aaa2addc52f259d7d7b066db08a93619da4098fef49fe40fbaa7d + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.5.tgz + version: 13.3.5 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.1 + created: "2022-08-30T16:54:34.051298425Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: 975d00f825dfba1850be2ea41c8f7e545f22d229669da7465c6e467ebf77822d + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.4.tgz + version: 13.3.4 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-08-23T22:50:54.512576314Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: a540dd5cce7f0a0516cab5e52cc2d88197e06074b408d4c1631a71acede173d8 + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.3.tgz + version: 13.3.3 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-08-23T11:26:31.169224211Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: e184d1dac5c9ab3af5e6b6c6fa993323f18ca37bfa5752ff58833694a1185c53 + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.2.tgz + version: 13.3.2 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.5 + created: "2022-08-22T17:11:32.957145504Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: fa2d7cc40cccb6f1ead4cb5b1b7b886459e51e499ef39ef617abfaac5f43ce23 + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.3.1.tgz + version: 13.3.1 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.5 + created: "2022-08-09T06:25:21.378838751Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:87e298c64814e9540bce5a838c4b9b96e75912bcc1f17c97ccf5ea676ee2e6a3 + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.18.tgz + version: 13.2.18 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.5 + created: "2022-08-04T21:44:47.849090851Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:3121e00e88da962a960acff117fbec0b3916cab76a5ad69271bcc483e0f4387e + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.17.tgz + version: 13.2.17 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.5 + created: "2022-08-03T08:39:26.076661173Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:758d5d71957b55e1b693dd36f95f7bab05b515adc428c965660352402846182e + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.16.tgz + version: 13.2.16 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.5 + created: "2022-08-02T08:38:57.486406087Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:6ee9c496ecbf8cabdc48567ed51a6ddeb97e904487632b77aec1fe76b9d3b3ab + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.15.tgz + version: 13.2.15 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.5 + created: "2022-07-12T16:28:23.720649944Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:ffc3cd628424bf1b98da39a8394c96e2923f9303abe5b9f2bba827d4c6568c6c + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/bitnami-docker-joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.14.tgz + version: 13.2.14 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.5 + created: "2022-07-09T10:41:18.416434198Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:7f0c1f34be60c666736594c0069cf06b1748fd33f5151327ef655dacf0829b4f + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/bitnami-docker-joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.13.tgz + version: 13.2.13 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.5 + created: "2022-07-01T09:42:52.546457529Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:0238191843a8cb2f021430cbade5865a7b740e0a0c7f3b05560a38197253a1df + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/bitnami-docker-joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.12.tgz + version: 13.2.12 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.5 + created: "2022-06-22T01:51:08.133103809Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:57abf3cc70ab9f9caded3dbf7f5409159d513c4a968aa72cbf9e0247832c468c + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/bitnami-docker-joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.11.tgz + version: 13.2.11 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.4 + created: "2022-06-10T16:06:05.638159417Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:44537c0210bc39bad1bcdb2223580b1e4fdcdefec4168d366f147a6b9307257e + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/bitnami-docker-joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.10.tgz + version: 13.2.10 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.4 + created: "2022-06-08T09:56:14.040299651Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:e03a57329d6426bea561201a4f380156c75f9b07cfc5757f0cdf03867f8f0a88 + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/bitnami-docker-joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.9.tgz + version: 13.2.9 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.1.4 + created: "2022-06-03T02:36:39.939911131Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + description: Joomla! is an award winning open source CMS platform for building + websites and applications. It includes page caching, page compression and Let's + Encrypt auto-configuration support. + digest: sha256:d53ca341a203728fad55d1b95abc68c1e5f1585dc48af4a545ccc48dd4377ac9 + home: https://github.com/bitnami/charts/tree/master/bitnami/joomla + icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png + keywords: + - joomla + - cms + - blog + - http + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: joomla + sources: + - https://github.com/bitnami/bitnami-docker-joomla + - https://www.joomla.org/ + urls: + - https://charts.bitnami.com/bitnami/joomla-13.2.8.tgz + version: 13.2.8 + jupyterhub: + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.2-debian-12-r5 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r12 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.6-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.6 + created: "2024-07-31T11:23:40.462953101Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 2e2a71810bd8e07eb7579d4c4da4c118bd6c3f796ca682765025df8ba4e2fd8c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.14.tgz + version: 7.2.14 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.2-debian-12-r4 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r11 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-25T05:39:31.124342568Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 5370b23a39b8ca40ece2c0d177a3844ef6ca158e1e421b3fe68dd4b61a886682 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.13.tgz + version: 7.2.13 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.2-debian-12-r4 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r10 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-24T06:46:56.342125055Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 823298a63cefe90404dc309292ce8f7eb67b47cc770cab4e3599efc720853110 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.12.tgz + version: 7.2.12 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.2-debian-12-r3 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r10 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-24T04:01:45.435540194Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: af9e56f60b847cf9557116e0398b7c686a33ca59d8d2250c8b9c3531a26f767a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.11.tgz + version: 7.2.11 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.2-debian-12-r1 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r8 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-16T16:02:05.524021766Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 00279bc979a60c8657bbba5fb240377cd1c7b7a8a41dbd25cb7e2580e956672a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.10.tgz + version: 7.2.10 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.2-debian-12-r1 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r8 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-16T13:19:14.758479632Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 401687bbb5dd4884ab55547a1058b302c6320b233c484c86173891dbc690cc18 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.9.tgz + version: 7.2.9 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.2-debian-12-r1 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r8 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-07-03T07:46:45.035720213Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 30afde644487df6fa59d80b5bd7f0ea9388fc05d9dee3d511b34f77f8cb9ca17 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.8.tgz + version: 7.2.8 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.2-debian-12-r0 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r6 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-18T12:13:44.269757229Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 61d25b1aa1db84524ef7d6d7fdd716d7230f9262b446c8921029da83ab41ac30 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.7.tgz + version: 7.2.7 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.2-debian-12-r0 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r6 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-17T12:43:25.084294373Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 935408dae62631e9ea87eeba8969c09d33851498f184b42e9afb7a45a3d4b6e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.6.tgz + version: 7.2.6 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r25 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r6 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-06T15:41:04.406346445Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 99785409e94af0db1c14eca49b6173756db0b109d9b6c803a7a84da192a15da5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.5.tgz + version: 7.2.5 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r25 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r6 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-06T14:23:11.356657537Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 39020421e7a137c7bd509ef6a5f0a7cfe1ad095c935965f6dfb69fbf51e83cb8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.4.tgz + version: 7.2.4 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r25 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r6 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-05T16:07:47.479205643Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: df3270a114e6c9058310daade7e3f5a8dfd57c6dd43d13d75cb1b51ca932c8d7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.3.tgz + version: 7.2.3 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r25 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r6 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-05T09:44:20.947712322Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: da18d2cacc868817e5ce4c6013643bababf5a778cf918b2341e950a50885f5b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.1.tgz + version: 7.2.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r25 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r6 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-05T07:48:38.442112525Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 094f8f054a076e7c64d23821f844bff59a2326d8979526951cb4b6c59fcb0c43 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.2.0.tgz + version: 7.2.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r25 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r6 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-05T06:33:14.257410053Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: ee239c3995cad5b9b20348b99986e44b2653fa77d1645f546eb4cf560f7f1f0a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.1.5.tgz + version: 7.1.5 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r25 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:5.0.0-debian-12-r0 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-04T09:44:30.487842484Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: fe5321afc6add22b0cb5e2e69cdca018999d39e0d824cf1f00bd698237d995df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.1.4.tgz + version: 7.1.4 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r25 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:5.0.0-debian-12-r0 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-06-03T23:07:59.899837847Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: b979a8cdfa688f05feb903cde5ccbea09d5b01fb3358f8e4c39c203d4223cad4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.1.3.tgz + version: 7.1.3 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r16 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r5 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-05-24T15:10:40.114927353Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 29d4e5d5f327eea5195be9edd3d31b97f95b6c201d30cefc1ed24f4e26daeb61 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.1.2.tgz + version: 7.1.2 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r16 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r5 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-05-23T08:54:04.714691929Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 6c1a3de882939b926a3777d084b97c893427e8602142dd18bc0a98dbe4b4818e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.1.1.tgz + version: 7.1.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r16 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r5 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-05-21T14:18:49.054393911Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 5a2261c677a70dc624adecd5ed36d08633f042ff7458b5a68be8c0d1883741ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.1.0.tgz + version: 7.1.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r16 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r5 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-05-18T01:39:23.359174903Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: d07b5bfe630c0183714603f8a2ecbff51d6aad331e670657a610cd989ce563de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.0.5.tgz + version: 7.0.5 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r16 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r5 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-05-14T05:14:31.324422532Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 1a882840bafbc30bc1ef876ffb309c416945d46acfbb37145b588ecdd76d9f87 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.0.4.tgz + version: 7.0.4 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r13 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r0 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-04-09T11:49:05.229457066Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 69fc87d4cfc0eaa892531dd5bc290359efeddede61ecca3ce27191843506c6fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.0.3.tgz + version: 7.0.3 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r13 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.5-debian-12-r0 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-04-05T17:09:51.203181095Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: e8fedfe795d7e50c7ab1efe7eaa10a358404d482d996ecdc3c1ccc5ac3e30e3a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.0.2.tgz + version: 7.0.2 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r13 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.4-debian-12-r1 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.5-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.5 + created: "2024-04-05T01:33:23.668662297Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 81037a52b6a59fe26210c359179e93d1e01e863242e2d235db12f8c79032eeca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.0.1.tgz + version: 7.0.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r12 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.3-debian-12-r0 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-04-03T15:04:22.466660492Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: f16b8342b888873af9f8bd6a32ab5a0952b1750ec1d9251f58ca1ee59f0a5620 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-7.0.0.tgz + version: 7.0.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r12 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.3-debian-12-r0 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2024-03-30T12:19:53.510746979Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 3f836001bdd9080da484e26d455d4450bb8511eba44e32783123b68c05937871 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-6.1.4.tgz + version: 6.1.4 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r12 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.3-debian-12-r0 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2024-03-26T14:17:41.909046484Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 5bd6e103f2bf9a7101ddd711e123a997744fdedb8c7c0ea10973e5cbc4b9b7a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-6.1.3.tgz + version: 6.1.3 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r12 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.2-debian-12-r0 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2024-03-26T02:25:31.341494755Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 8d172cfcbe6d29150b809f1a1a3c2d3e5a9b62f408104e61a20acd29345cec97 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-6.1.2.tgz + version: 6.1.2 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r12 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.1.1-debian-12-r0 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.1.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2024-03-24T08:59:51.917260642Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: e7c81e30842932e32d3e34ab9b6c78c2007bff9b572f83897613a7fb4582bc91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-6.1.1.tgz + version: 6.1.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r11 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-12-r26 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-03-06T09:11:38.715426013Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 49bc4af4ff0c7c37345d884b4d94d6e844ab26acc0685d5622e20033eb4b2a36 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-6.1.0.tgz + version: 6.1.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r11 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-12-r26 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-03-04T16:32:52.957341262Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 068d033e41ca894fb0be612ebcd85dff043a2e0c7fda329f2f8698ceb6cbdc69 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-6.0.0.tgz + version: 6.0.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r11 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-12-r26 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-02-27T16:30:46.24215792Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: fad83b713195945349d54d030f179ba52f4ac9f43d08bce98f39a3d67988ae2c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.9.0.tgz + version: 5.9.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r11 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-12-r26 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-02-26T16:21:28.852713081Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 0e1798e7669ad771d0260a323230a63fd2d1e61fb67981f4ca8b80f953944d84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.8.3.tgz + version: 5.8.3 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r11 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-12-r26 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-12-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-02-22T11:00:50.93378916Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: a3410d534db415c4507ece58109a38af8972b6789373e896230f5924277137b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.8.2.tgz + version: 5.8.2 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-12-r10 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-12-r25 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-12-r25 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-02-21T16:31:18.887579299Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: e02b1d30b9ce125eb3e058abf5cb91ae69399e3fabc6ec677a350b0946baccc0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.8.1.tgz + version: 5.8.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r5 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r75 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r71 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-02-16T09:52:26.094891746Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 94ec12e75d63956ac958f7724349eaed45d902729194fe759f83fa1f6f51717b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.7.0.tgz + version: 5.7.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r5 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r75 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r71 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-02-08T16:07:14.789102151Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 36045f8ab80408867e75471025051b683b2ae7b3fa879d86ed5fa2ced0546473 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.6.5.tgz + version: 5.6.5 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r5 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r75 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r71 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-02-02T17:24:58.977070431Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 574681c9e163a3ea74fe65a01557860f5d37a040633aa9caa37448c3bde74274 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.6.4.tgz + version: 5.6.4 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r3 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r72 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r70 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-01-31T11:18:58.123591234Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: c234b55d87e08bde639e643a25c84353d6286ab20e3267c6bab22984cd6fb7db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.6.3.tgz + version: 5.6.3 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r3 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r72 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r70 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-01-27T19:32:45.923659506Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 9138447dca2b66fc0848db9759f2135c6ecf145fc136f7c525644da65d3235d0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.6.2.tgz + version: 5.6.2 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r1 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r69 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r68 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-01-22T14:30:46.98812171Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: f0185132cf7a6534b67dcb1ce8b3e5372b8e16a6c2463e9888ccb8893d0f980b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.6.0.tgz + version: 5.6.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r1 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r69 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r68 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-01-19T14:22:56.150775241Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: f8b202a86961839e3d0d2b5f7a11aef0905158000427d86301960563077fca7f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.5.0.tgz + version: 5.5.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r1 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r69 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r68 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-01-18T08:31:59.973325566Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 3470be0591d5fac620d1bbd13d1dd26385dc078efe6278426560d88eb5028193 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.4.1.tgz + version: 5.4.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r1 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r69 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r68 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-01-17T08:27:55.40014366Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 966cd977a87f2e1f03e130c18a6852eda6d31498eadabbce2bcab19ffd6dd8d7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.4.0.tgz + version: 5.4.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r1 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r69 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r68 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-01-15T10:13:00.515562727Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 373dfc29cca22c2c74f5cd9660f694c920ec5a2badab06132d3fa08eb40e4e11 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.3.2.tgz + version: 5.3.2 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.1-debian-11-r1 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r69 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r68 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-01-03T15:30:07.366240889Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 57f825b8cd1047bf31989d1473af56d1aa01660bf9426392dc08689f75521898 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.3.1.tgz + version: 5.3.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r18 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r66 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r65 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2024-01-03T07:47:04.561369757Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: d0e0391740cb3d2d63809312031f728be79cc0dfb1cff533fb4a67ca90c3b9c5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.3.0.tgz + version: 5.3.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r18 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r66 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r65 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-24T15:00:45.556020907Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 768f6b0105a3f6a57fac40afd9efd168bb7729f7c64d4a960335f5f49f5621b3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.2.9.tgz + version: 5.2.9 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r18 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r66 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r64 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-24T14:22:23.098038685Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: fbdd7aaf515f0f9f55cf38a397c465d9f7321d2799a599ba8071c6a76463970d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.2.8.tgz + version: 5.2.8 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r66 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r64 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-21T18:35:50.328543453Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 4f019806bf5aedd66bfdf3a73321cd096c8e27e048db7422de4b8e3f0f9beb9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.2.7.tgz + version: 5.2.7 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r65 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-16T19:33:21.964653415Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 0edb0adf04b2a970c32b2cf41bfc571011021d4a406a69bb11359c53247a7d7a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.2.6.tgz + version: 5.2.6 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r64 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r62 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-16T19:02:37.226919422Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 158f6e0047629897fb3d423df5721d53fce2407a4d97c94d54dccafd5643d887 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.2.5.tgz + version: 5.2.5 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r63 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r61 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-16T17:37:23.296970622Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 512454bdc0a71f364f70a531e259e238cb4bac28374a3d1aa06c53d502ee0576 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.2.4.tgz + version: 5.2.4 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r61 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r60 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-16T11:02:40.007475618Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: f7360c60f795a23cc710ec405b53043199c9d0aa3bf7d837822a5658f1af217e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.2.3.tgz + version: 5.2.3 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r60 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r60 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-15T19:11:21.477255691Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: f2102b84331b98880393c35d700e9842d45c8fe92f623cc02372577a2588ddd2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.2.2.tgz + version: 5.2.2 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r59 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r59 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-15T14:41:05.508121933Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 1c923f143658d813c8e442f8bdbdc7d9c277258c689ef5e3c5d6fe683ff2549a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.2.1.tgz + version: 5.2.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r58 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r58 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-15T08:46:10.196169719Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 24b42274961d670db4fce043f45fbb853ecc494714554fea7a053196e1c31ce2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.2.0.tgz + version: 5.2.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r58 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r58 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-08T16:24:17.288696854Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 1955eee1c09e3d7a12c3f6102ce5ba5b1f19af74d06813dc085de8b4f780fc44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.1.3.tgz + version: 5.1.3 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r58 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r58 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-02T16:38:17.905850839Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 9bae05ad241f1243344bcc871d27bb6eea694303af12b9a11e9357472f275b4c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.1.2.tgz + version: 5.1.2 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r58 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r57 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-11-02T16:14:31.243875635Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 2a79d5c257a416a32e1526dd442efefafa6efccda5aadd9c0637ccf512d51ccb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.1.1.tgz + version: 5.1.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r56 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r56 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-10-31T13:10:09.188980748Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: d9adea8f39f74b262bef425540746bc945a918da09929ce362ef222b2d249c7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.1.0.tgz + version: 5.1.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r17 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r56 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r56 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-10-25T17:53:40.664294281Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 282fcedc98ed9e58942472082bc0cb0cb989785f3b5ef48502f5d6f334591013 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.0.3.tgz + version: 5.0.3 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r16 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r55 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r55 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-10-12T15:13:50.494331151Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: eae3aa28954f2e1f67beb22dc19f81fa2f3638991c44acd9f8c40fe3b029606c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.0.2.tgz + version: 5.0.2 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r14 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r53 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r52 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-10-09T23:50:37.429541325Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: b8d797975c27940b12a7e049cd0d759e3b138d4bdf24848164cf8e4420bdb21e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.0.1.tgz + version: 5.0.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r5 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r45 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r44 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-09-29T10:01:26.349689721Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 81fbe02ec555c2e56346b2e21d2d8fb46b3ff6f18f77745467e8e8f442204e2c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-5.0.0.tgz + version: 5.0.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.6.0-debian-11-r5 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r45 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r44 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-09-26T17:24:57.596748736Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: bafe67a6ed96adc9da5e512c2a7404c214c8b431c25d97ae00871e5024511430 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.2.4.tgz + version: 4.2.4 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.5.6-debian-11-r16 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r16 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-09-20T08:23:04.064824866Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: abf58c82e8eae8ba757b4a8962c9d25ce0c586a90e2a8cd7c3ca2b7f55ac81c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.2.3.tgz + version: 4.2.3 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.5.6-debian-11-r16 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r16 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-09-07T12:29:48.60593962Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 1fa93f587728bc42e20942122e99db5954f833aa3559357b24d1ff6b7710159c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.2.2.tgz + version: 4.2.2 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.5.6-debian-11-r16 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r16 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-08-30T12:29:52.213719166Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 65fffe16519c1c1a9d3a382098ba1a16ef32d3d6f05c9849a2bd2ac75cf3f8d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.2.1.tgz + version: 4.2.1 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.5.6-debian-11-r8 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r8 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-08-23T15:28:30.634271036Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 99d1bc3dbb0cf21482fbc587d24546dac7e5edd0246f2fb11843d03e4c6229b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.2.0.tgz + version: 4.2.0 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.5.6-debian-11-r8 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r8 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-08-19T21:10:25.153723685Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 0e4320bc606362e041b449974f7c262bce0a296cc5c281cc829234318886481c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.11.tgz + version: 4.1.11 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.5.6-debian-11-r5 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.2-debian-11-r5 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-08-17T18:18:48.81986881Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 83506f27cde14bcdadb7fa588e88419463f224b39a1fc544acac46061bc9a10f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.10.tgz + version: 4.1.10 + - annotations: + category: MachineLearning + images: | + - name: configurable-http-proxy + image: docker.io/bitnami/configurable-http-proxy:4.5.5-debian-11-r124 + - name: jupyter-base-notebook + image: docker.io/bitnami/jupyter-base-notebook:4.0.1-debian-11-r50 + - name: jupyterhub + image: docker.io/bitnami/jupyterhub:4.0.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-08-16T11:12:40.993393224Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 6e6aeb9ec28d09dfb5e1b39fe88a1ca9719aff0c85cfa928809ca5c6d0b9823b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.9.tgz + version: 4.1.9 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.1 + created: "2023-08-02T18:29:27.616018629Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 882acac7612eb2c2741692e9795b4a3ae3139bf308d32b62ff64ca23ccb959fd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.8.tgz + version: 4.1.8 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.1 + created: "2023-07-13T14:32:37.827771723Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 2ded06bd1a700b6d7cd2535821265263ef45b70c60024095eafd5489a30b87bc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.7.tgz + version: 4.1.7 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.1 + created: "2023-06-28T16:54:26.072045386Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: a43531cac5c5b63ee0eda134162410e1ba44e0a1774962064c6160c30dd40f48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.6.tgz + version: 4.1.6 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.0 + created: "2023-06-26T06:58:10.451105963Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: c6b3e97dc34e085bd6690b3c82875830c21da46a831db4576a2425210fbf7cac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.5.tgz + version: 4.1.5 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.0 + created: "2023-05-23T13:02:59.277653146Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: ee62ffcb4609cc500c8727230a1d61366a4d09398b08ab8731434895cb59eb7f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.4.tgz + version: 4.1.4 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.0 + created: "2023-05-22T12:04:39.301361741Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 067e776da81931210298e6dbde74f589f6883a157e3d432d06b3cf144359e0e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.3.tgz + version: 4.1.3 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.0 + created: "2023-05-21T15:46:07.222111479Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: a71b76db31c846f113d784b40d235a4a370dc18ef8df34de5f33d22c8612fb31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.2.tgz + version: 4.1.2 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.0 + created: "2023-05-16T23:14:07.508953021Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 6dae8d4aaead1d171a708270b9db9516904481e8b86aa1068a63ba25e4cbfef8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.1.1.tgz + version: 4.1.1 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.0 + created: "2023-05-09T15:33:15.755988489Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 7dec525b11bcd572f013bb0254f16ac62caaeb9766546ee65100d6b514af3a9d + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.0.1.tgz + version: 4.0.1 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.0 + created: "2023-05-05T16:58:08.889226129Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: b0c7a52a9f144861c287552e36ba42d5e5a8b531ac00c8e059c95673027f4b51 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-4.0.0.tgz + version: 4.0.0 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-05-01T13:21:23.06259878Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 93b0a06a6132dd20ccfc5d24e4a51fc8a7ca2889e94a5f8c2c5c9add014804d8 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.1.1.tgz + version: 3.1.1 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-04-01T13:23:34.583427332Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 982882cbcb61a72af635f399803953869fba4beaad3c0046dabd1e9ce0fde9de + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.13.tgz + version: 3.0.13 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-03-22T05:18:12.89159963Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: fa9ba9b3a879d34138347e40678ae7363bf01ee7354c8e04347855a9dcb9e894 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.12.tgz + version: 3.0.12 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-03-01T11:51:08.339352066Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: d89027dac8ddd3e128f69a317ddfb9bd6d804ad69b0510a4b70a8e648ae8373a + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.11.tgz + version: 3.0.11 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-02-17T15:44:36.197174344Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: d493d2d53d4b18ef6f85f75bbc0e5d411906ee13cb177fe96e249cd64ddac282 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.10.tgz + version: 3.0.10 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-02-01T17:34:02.347041766Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 696e3abb190b63085819a67f67c518c06c3bde15fa3136343f72c16b8a071482 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.9.tgz + version: 3.0.9 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-01-31T10:43:32.559396577Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: bc475871b9adf1331810858cd4b4685029625d36da13df79b19c322b830d77ba + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.8.tgz + version: 3.0.8 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-01-27T15:20:24.714210598Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 7d5465739f44c9ad470570cacd5af9731992f42d399760ec1e1f15690d83a2c2 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.7.tgz + version: 3.0.7 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2023-01-20T08:16:53.980880823Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 206968561ce2f73c830b822df865023d5ecf1bc58d72d81c686839f56a7c86fb + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.6.tgz + version: 3.0.6 + - annotations: + category: MachineLearning + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.0 + created: "2023-01-18T10:28:33.13230425Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: c72601a46260805b2fce1a0e4f3faa54aad64333ef6be6e6d4def6206c1a1794 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.5.tgz + version: 3.0.5 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-12-29T09:34:27.229530225Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 68fd1241991f859c9943ed783c21e2c01222b1789495a39f33d3466ad53fcba6 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.4.tgz + version: 3.0.4 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-11-29T09:29:27.804879157Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 31840222dd8b305f5a3bd286bc28a2f7c0a36b2b94147a5dc64f963c30fb405a + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.3.tgz + version: 3.0.3 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-11-21T10:01:26.754874416Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: 15ca808a9ba947b21de2021882dbf63678042c5f49d8407bfee90627da495b5b + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.2.tgz + version: 3.0.2 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-30T10:19:13.696585237Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:d1b77458246e6c3997e82de3da5d8e7620dcc36da944951815035869fe7eb6d9 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.1.tgz + version: 3.0.1 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-28T14:08:41.769007649Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:500744c78cb68eaea667670417beeef45aeda3d63f8e81fe8162ac0b8c8a276d + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-3.0.0.tgz + version: 3.0.0 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-24T10:46:27.60299378Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:dc08ced31de86957cba4fd2fd3ba10ebd03b8d7eaf8898ba5b7d11caee39aff0 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-2.0.2.tgz + version: 2.0.2 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-10T18:07:59.25712894Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:58750ec4fbc3e5fcc7eedc257471326a3501ef9d3e0aca953201bb2107bb7fbe + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-2.0.1.tgz + version: 2.0.1 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-09-28T18:56:18.168962081Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:f68254d66d51d8e29dce728d3b0c0d72e2d724f2549c21604e4ccfc8d31edf5d + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-2.0.0.tgz + version: 2.0.0 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-09-26T15:34:29.745264565Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:e004eadf07242f9d3cb3ce6bc364217062c37aaf3f5e65fab86e780e1cc0f643 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.4.6.tgz + version: 1.4.6 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-09-22T11:04:51.093103819Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:96241d84dc2387a59946f67dc3f8ca794131aad411cb019b5bcda68cb51f3be6 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.4.5.tgz + version: 1.4.5 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-09-20T08:19:20.070165352Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:0675a13ef210b5403d594724b0abe504c70dcc84b1584646baf9acf766b10b2c + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.4.4.tgz + version: 1.4.4 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-09-08T06:09:49.373847377Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:f45c5a3609b98f83fa4f78728c8bf1b38680155ea2fe9d0cda1583e0f55cfc09 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.4.3.tgz + version: 1.4.3 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-09-02T09:05:30.308410126Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:b51633a927a7c2357b60408d0535d7cb0a03a21b67298e53536aa8a044a1feeb + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.4.2.tgz + version: 1.4.2 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-08-24T00:45:49.925440562Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:3a6a214d2eb80c007f3805d057bd7c1cd299c7969ad28b164e1611cfc4bad1d9 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.4.1.tgz + version: 1.4.1 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-08-22T18:59:39.596588229Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:2b3d8016330893e90b41a867e5fe21b8772b27b81cd6261191a13616a8685dfb + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.4.0.tgz + version: 1.4.0 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-08-09T06:27:42.225609789Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:a076a55437b2260ef57cc8792702b62d7a60a1df9c43e725c7b702df021e69b8 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.13.tgz + version: 1.3.13 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-08-04T21:51:34.900172219Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:16805a60939fccb0b1d4764b290e0e1483dc521e7ae4de709f77ed9478a71100 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.12.tgz + version: 1.3.12 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-08-03T09:14:51.625878688Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:86852c66bbb119af76df5b67a5d97ee5f3fd94b8ba8c0b40b67109ab3f210503 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.11.tgz + version: 1.3.11 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-08-02T09:14:21.198676417Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:9025c6b90a06b0ac27505e857250f541a9c481c613280eb54955958ef384daf8 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.10.tgz + version: 1.3.10 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-07-18T08:48:03.612207412Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:335582bad4a64811d4b64b6610c4f33d4fd7470ec2e50efc73e5a2e253d91405 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/bitnami-docker-jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.9.tgz + version: 1.3.9 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-07-04T18:01:51.94686774Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:640739d44465489e750b257dc0efa1b18009d15bc523fa657267312501c7cd0b + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/bitnami-docker-jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.8.tgz + version: 1.3.8 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-07-01T09:48:29.771931643Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:d8557ffe3baef57728ee2a35bc97785582a02da6f3b042f3f0ad764b1f6328fc + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/bitnami-docker-jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.7.tgz + version: 1.3.7 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-06-10T17:54:39.23859753Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:9cb55c280d15a6a02fb98ea46b6757bd364328073ccc657d8b26ff23eefa8944 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/bitnami-docker-jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.6.tgz + version: 1.3.6 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-06-08T18:19:32.509887543Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:785554ce1bb7dc40263f51cefdeb71eabf21ca481618113e54d97cfd37db3916 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/bitnami-docker-jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.5.tgz + version: 1.3.5 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-06-03T23:56:07.635065047Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:2182b9e644553d54ec5620bc931096ec745318b36ce959affd89889a215b8faa + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: jupyterhub + sources: + - https://github.com/bitnami/bitnami-docker-jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.3.tgz + version: 1.3.3 + - annotations: + category: MachineLearning + apiVersion: v2 + appVersion: 1.5.0 + created: "2022-06-01T06:58:34.697118552Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: JupyterHub brings the power of notebooks to groups of users. It gives + users access to computational environments and resources without burdening the + users with installation and maintenance tasks. + digest: sha256:d78055c47f2d7aa9b66829b168a3ceedb9cc99ab1d26756b80355882db7b9d51 + home: https://jupyter.org/hub + icon: https://bitnami.com/assets/stacks/jupyterhub/img/jupyterhub-stack-220x234.png + keywords: + - python + - scientific + maintainers: + - email: containers@bitnami.com + name: Bitnami + name: jupyterhub + sources: + - https://github.com/bitnami/bitnami-docker-jupyterhub + - https://github.com/jupyterhub/jupyterhub + urls: + - https://charts.bitnami.com/bitnami/jupyterhub-1.3.2.tgz + version: 1.3.2 + kafka: + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r5 + - name: kafka + image: docker.io/bitnami/kafka:3.8.0-debian-12-r3 + - name: kubectl + image: docker.io/bitnami/kubectl:1.31.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-08-14T15:01:23.390423602Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 18422a12086534da4f816ebd3bc4c4e5cda8ccf90ddeee7c20971fa2bec22afb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-30.0.4.tgz + version: 30.0.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r5 + - name: kafka + image: docker.io/bitnami/kafka:3.8.0-debian-12-r2 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.3-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-08-08T09:58:00.793236332Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 9345185afdd3648463b635f76dac115ab788c558c7a94faaf5ccd6c3c4ee77c2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-30.0.3.tgz + version: 30.0.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r5 + - name: kafka + image: docker.io/bitnami/kafka:3.8.0-debian-12-r2 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.3-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-08-07T08:17:53.30961608Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 85e0e1ece4128e4c0226b3e893bbcf29dce126ff47d872336fd9cfc85b3ed515 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-30.0.2.tgz + version: 30.0.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r5 + - name: kafka + image: docker.io/bitnami/kafka:3.8.0-debian-12-r1 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-08-06T17:32:35.79113619Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 44d00c23e187f09e15fb7c7eef081c7ebc9ef96f2dd5f78f7454ae453d539211 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-30.0.1.tgz + version: 30.0.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r5 + - name: kafka + image: docker.io/bitnami/kafka:3.8.0-debian-12-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.8.0 + created: "2024-08-05T12:59:44.582159086Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: be83c3f60e4b7f31bbda536d9250b63daebfad5f39519b7544a50d75fa6b8cab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-30.0.0.tgz + version: 30.0.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r5 + - name: kafka + image: docker.io/bitnami/kafka:3.7.1-debian-12-r4 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-08-01T14:21:28.960667376Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: e60ff50aab54277bc62b0b7c12c3f7e4b8e28c78ab69b954f68d2f207a9174d7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.14.tgz + version: 29.3.14 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r5 + - name: kafka + image: docker.io/bitnami/kafka:3.7.1-debian-12-r4 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-25T05:46:55.843538706Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 686247a188fbc7165633155f9b52bf80598eaead40976b5bfe7e447039ab9e48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.13.tgz + version: 29.3.13 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r4 + - name: kafka + image: docker.io/bitnami/kafka:3.7.1-debian-12-r3 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-24T11:19:03.019740923Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 9640b50d41671532ed69ca2d1ca4629e888dd701907441e9d2e0432287e47c88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.12.tgz + version: 29.3.12 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: kafka + image: docker.io/bitnami/kafka:3.7.1-debian-12-r2 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-23T07:32:15.779522268Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: f65818ec375f4f95fc43ed2af402883e49ef286c753f328793a1df340f7ebaaa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.11.tgz + version: 29.3.11 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: kafka + image: docker.io/bitnami/kafka:3.7.1-debian-12-r2 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-18T15:43:10.999903429Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: f5d9d4ceab9978b0f8271f85d3031d0d839b3752e21d0dad53301adb524b6e57 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.10.tgz + version: 29.3.10 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: kafka + image: docker.io/bitnami/kafka:3.7.1-debian-12-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-18T08:41:11.487785373Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 12178cb19abf9a2ceced123565bcf5f4fda7b511406f0d35667509032bdc5f57 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.9.tgz + version: 29.3.9 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: kafka + image: docker.io/bitnami/kafka:3.7.1-debian-12-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-16T06:38:40.544713103Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 2d1a0a500657ddad481cd0524412a4921f8024cd6261a96e97e9e20a2de94e23 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.8.tgz + version: 29.3.8 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: kafka + image: docker.io/bitnami/kafka:3.7.1-debian-12-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-08T10:48:49.24808269Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: ae996296965c3bfb53a7fb352f8217fd340173ead210c5537c4f0834c1c95432 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.7.tgz + version: 29.3.7 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: kafka + image: docker.io/bitnami/kafka:3.7.1-debian-12-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-02T10:13:19.222692488Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 195333864a8f07274142ce2b8ac45d15ae5410538faab2c1128d7912421e3cc0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.6.tgz + version: 29.3.6 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r2 + - name: kafka + image: docker.io/bitnami/kafka:3.7.1-debian-12-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-01T12:36:25.16270161Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 80d3e1093c8239866849c6de57ad826843436cdc395d92c22d346d6482013769 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.5.tgz + version: 29.3.5 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r7 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-18T12:18:15.325957524Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: a1066644859d3ac1ac91bb297706a44c4f7917b7fcc628c3fc345d1cded9318f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.4.tgz + version: 29.3.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r7 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-17T12:56:08.902857699Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: f90f320737fb327e315d5e30cef8827cd6f5fabc4f7f330529324b36837d0d55 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.3.tgz + version: 29.3.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:1.0.1-debian-12-r1 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r7 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-14T13:27:10.951215464Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 1787a276c058109008e60bfd858f5c1b4eee1ac193fb6e3d234a9abe9c801d1e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.2.tgz + version: 29.3.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r18 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r7 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-13T07:12:09.532005027Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 0ca2ae79ffb1f54f6e080a61c6fb9fadba9a2b79fa4de92ab490d1b5188fa6d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.1.tgz + version: 29.3.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r18 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r7 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-12T12:08:04.03567475Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 7c86c4fbfcf71bd7a95f8b06c502f16ac1934b893e018a173f47458030880189 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.3.0.tgz + version: 29.3.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r18 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r7 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-06T15:59:09.909172197Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 4cf5d03087b6839cd8c39fa712773d4d7e76560e022f96f904241441a7d8112f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.2.4.tgz + version: 29.2.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r18 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r7 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-06T12:43:23.647205502Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 8a51a2417574ad076da7249ae72e7c0126d1567071c904f1992ae45270484ae8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.2.3.tgz + version: 29.2.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-05T14:14:42.43373304Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 7ad8d19b626f9a8eaca1aa949b303af123196e3a25891aab7af6982a8f9492a0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.2.2.tgz + version: 29.2.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-30T13:53:29.799223989Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 3a41c46b7f4276a38b183655bf8b08bb13dee65b512b2450b38ce2d6863f9528 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.2.0.tgz + version: 29.2.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-29T10:46:31.087332852Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 94bd49714e14f351305e843364f6cd63981a9571dae6f24bdd9fd62cbd17a08a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.1.2.tgz + version: 29.1.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-28T08:37:21.421326734Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: dbc0449748797e7d1b42d5695022119a17678914969f0df7aee40d9bd2e96d9e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.1.1.tgz + version: 29.1.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-27T09:49:26.996227569Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: ef5d079bfbd852b5c6cc61bf4b50f2c60306e996c8164c93c3d0029783b6de75 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.1.0.tgz + version: 29.1.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-24T15:03:26.970191909Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 7d1b2d520a18000912e6bc8d34d9ab3ece34b332f3634b49f3147dc0485b1564 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-29.0.3.tgz + version: 29.0.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r27 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-21T14:17:15.652198669Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: d87b3a6a47fac0c4d0ef33060915ddcfdb10e546878170b0cea415a12a69fd2d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.3.0.tgz + version: 28.3.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r27 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-21T06:51:13.991790221Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 4c509c7ea07802bead79f56c5d2e888a08bf913afdd43219735575256421532d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.2.6.tgz + version: 28.2.6 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r27 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-18T01:39:33.295123027Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 1076847d2ca5d6f6ded17b7df2d614dd9457a4292b5b1537332482f852becf07 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.2.5.tgz + version: 28.2.5 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r27 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-15T10:36:23.773047154Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 23ae28de907a5c9a3530a9ecda229238330a5d96c2cfa69960f7a8dc66a6001a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.2.4.tgz + version: 28.2.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r17 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r6 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r27 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-14T05:14:12.041021518Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: b8c215c510aea50d53b5b4e035efd56fe05668f16916383877d31168ce179b68 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.2.3.tgz + version: 28.2.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r16 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r5 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r26 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-13T16:49:03.483375661Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: bccdde80cdceec5a77ba7811f0985f8ba2366af315f7cfafb3099e262f98ab79 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.2.2.tgz + version: 28.2.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r14 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r3 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r23 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-07T07:33:44.299172213Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: e3118e76aff00b518a1e9df248de21046fad440dc1d9a9a19313a17b5651726c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.2.1.tgz + version: 28.2.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r14 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r3 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r23 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-06T10:15:49.127863272Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 39c82b06ad03c39bdc8b8fcc14e9e91a57889a7a933846f26d42155eb04a0f45 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.2.0.tgz + version: 28.2.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r14 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r3 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r23 + - name: kubectl + image: docker.io/bitnami/kubectl:1.30.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-04-26T06:38:33.299978073Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: d6f7434417a43f04e239bbd6d4fa8746df987a3f57044f9845377f8ad907746e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.1.1.tgz + version: 28.1.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r13 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r2 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r22 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-04-25T14:37:01.151322717Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: a1f20380ec19aa96498eed24e07ab7ff9131d9e0865652aaa5938ed4075c4e77 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.1.0.tgz + version: 28.1.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r13 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r2 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r22 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-04-11T16:59:34.289469111Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: d2aad7de9fb9bc1bd4b75e7814088359aa59bf1751d9a8dc4ef7a16f8ed33f9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.0.4.tgz + version: 28.0.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r13 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r2 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r22 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-04-05T17:21:38.494107121Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 0b4efe0c22705ae21b7d1ea740cdae467b1f41f42aa458f34135b8bbb405b195 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.0.3.tgz + version: 28.0.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r11 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r19 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-04-05T11:04:59.691348775Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 933db672331bd86bb7f187d4a0e69d08a63b0b99a3d280d7d1ca012a55a5cf56 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.0.2.tgz + version: 28.0.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r11 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r19 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-04-01T14:16:15.22692584Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 711751fb22efda650048998f74cf1cf08c04457b482c35762f3d2983d2936106 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.0.1.tgz + version: 28.0.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r11 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r19 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-03-26T10:41:31.976169269Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 64ff51ed01f68310b6d236109983db49e0e37992f60cb771921b422ec9b128b8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-28.0.0.tgz + version: 28.0.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r11 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r19 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-03-14T08:04:24.761801913Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 1f61a6a6fe8a704ff4e903cd3433b336b250f07b70f96e9100ef1316087392dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-27.1.2.tgz + version: 27.1.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r11 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r19 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-03-11T10:07:36.59142392Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: a1332a50b2fb31d33e23e453bb44551d1c237269c160c2032ad19d08700dd156 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-27.1.1.tgz + version: 27.1.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r11 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r19 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-03-06T11:44:39.96312803Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 3f179db2ca196ce0072b9be01f3d0ceff5510779f461053eb6c4b49572961f26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-27.1.0.tgz + version: 27.1.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r11 + - name: kafka + image: docker.io/bitnami/kafka:3.7.0-debian-12-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r19 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-03-04T17:55:39.230430819Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 7cc93d35b1be68c532d9c17d5c1f7715f0680ac00bdbf3b52688c7b93e3be7e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-27.0.0.tgz + version: 27.0.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r11 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-12-r12 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r19 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-02-28T14:03:59.308024099Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 04a2300a494191bda0b4fe2d20519aac5cd8b2787e96e75c27a6fc8bb78adec4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.11.4.tgz + version: 26.11.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r11 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-12-r12 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r19 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-02-23T17:17:25.426834207Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: ed96da1f152a6a40270d9da76beee0cb3b77c9fec9ccd3a13dcdf7fe9a688daa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.11.3.tgz + version: 26.11.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r11 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-12-r12 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r19 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-02-22T11:02:56.785772201Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 4015872829f6962fd6952c0939942bfe063097a4bc92fc70208cd3c8cabdb456 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.11.2.tgz + version: 26.11.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-12-r10 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-12-r11 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-12-r18 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.2-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-02-21T12:31:12.444347786Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: fe841169f965565ed816faf8b69d67b30192d81cc2cddeb9a7076fff9da03188 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.11.1.tgz + version: 26.11.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r6 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r140 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r6 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-02-20T09:48:20.533038243Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: db3dc4cb3f3669b3fbb0ebacf610e4684a15e991a4ed2d3b9e0585f92773b232 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.10.0.tgz + version: 26.10.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r6 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r140 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r6 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-02-15T13:33:20.720033352Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: d752bba4457372abae4d2c256717e14c17312b08f309e58a4b58f43c2a3ba499 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.9.0.tgz + version: 26.9.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r6 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r140 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r6 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-02-02T17:33:11.605007022Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 5250bdeeb3df64aaf971e1f079402e65f06c96d725ded3168e3191e0efc33e59 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.8.5.tgz + version: 26.8.5 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r5 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r138 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r4 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-02-02T09:02:41.673466391Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: cdb5394f1fe057b060a35ff9a18af43921a3757afa5b6c9ab37fb56845b51891 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.8.4.tgz + version: 26.8.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r5 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r138 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r4 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-01-27T20:20:52.117880087Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: febd9080ecba395dccc851718a750b871f87cb931106bc0abb29ae5f7ba365e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.8.3.tgz + version: 26.8.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r4 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r137 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r3 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-01-26T09:18:37.206753888Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 9979db47ad6903581610d2c3218a6f22641b2436f4f841aabe30d0a85215043e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.8.2.tgz + version: 26.8.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r4 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r137 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r3 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-01-25T12:41:16.548352997Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 2d60f60df3421ab1e4d84fc9a97986463912b6d24b9d11771c599b1ec4871a69 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.8.1.tgz + version: 26.8.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r3 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r136 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r1 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-01-19T11:54:33.017374737Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 993678d11d6615a3a023bcb50187ca4253ad9a44863c981a2a32bfa87cd06187 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.8.0.tgz + version: 26.8.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r3 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r136 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r1 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-01-18T08:36:18.915780168Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: e0001f967d48d28d679b78cf186c0e319a2ac89051d268c22764fe18a44e67c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.7.1.tgz + version: 26.7.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r2 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r134 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-01-17T11:58:21.08412022Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 7e3544262688a78ec978b07a1fdfbaf858a5d388f9f1faddbb900c132b935414 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.7.0.tgz + version: 26.7.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r2 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r134 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-01-12T14:38:20.064292812Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: ff599027bbd39895f7d2ac9f5cf9497802b4b34d1b7ba99ef60eb1298a3c5ff3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.6.3.tgz + version: 26.6.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r2 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r134 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.29.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2023-12-22T14:25:50.117606947Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 0fbb4e1e490d7aa59e62d5f90eeb10f72db740953fc3d80f97085c554e76dad3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.6.2.tgz + version: 26.6.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r1 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r134 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2023-12-20T11:30:10.772774062Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 4bbe9e1049c9b3ca1c7746aaf6708504b43247acb38e7db5aaa1cb247314e455 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.6.1.tgz + version: 26.6.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r1 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r134 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2023-12-20T08:59:51.54782963Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 49aff6c9d025aba70fd62c3bd616e9e89f6807c54f6575321b1502eee39911a0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.6.0.tgz + version: 26.6.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r1 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r134 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2023-12-19T11:26:53.259715245Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 905b62217bd16615c57097f8c9c167678c0382071c5cfda5079853a4ff703a96 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.5.1.tgz + version: 26.5.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r1 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r134 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2023-12-13T08:53:36.70034459Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 6382edf9e52c9a3ab506804da7032c5139d78f721d774f668925ecef3653fbf0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.5.0.tgz + version: 26.5.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r1 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r134 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2023-12-12T12:57:57.863990393Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: b7322bb4b6af042fc043a63e9b4ad79866705811037f917fba7f9d1d006e4d2f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.4.5.tgz + version: 26.4.5 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r1 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r134 + - name: kafka + image: docker.io/bitnami/kafka:3.6.1-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2023-12-09T10:51:38.047379099Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 6963f9444a007d6b1c4bb24a309b4982aff06a0c475df10caa3b36b9ee30a4f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.4.4.tgz + version: 26.4.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r1 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r133 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r2 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-29T12:05:00.893125225Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: bc7504ada379b074a72df04596e725d5749625c30dc2cebc05547fb1a5a0b1e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.4.3.tgz + version: 26.4.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r1 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r133 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r2 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-21T18:38:31.413710907Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 2617b819942a34c8f2188a41aea19f55b6269ee07f929bd95ce0fe39671030b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.4.2.tgz + version: 26.4.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r1 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-15T11:27:22.416233751Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 08722742620012c928851460fd81eddfb6ae1f00dfed33b0333fa153d0c1bb2f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.4.1.tgz + version: 26.4.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r1 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-09T12:20:16.689262479Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 8e803687f259428d634d466ac8abd13e34f9f333d396ecca22d7a18e3dd1204b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.4.0.tgz + version: 26.4.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r1 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-08T16:29:01.963303099Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 9b69bd179f264140d3f924774b6b32ca9003f9a44877c5471732b845414f78c2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.3.2.tgz + version: 26.3.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.20.0-debian-11-r0 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r1 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-07T10:22:30.052319023Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: cccf35da9b99c8c5f4e0790e11dedd57c58b96b66bf0b097df6a7cf5a4b438b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.3.1.tgz + version: 26.3.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r95 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-06T15:21:28.195222131Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: f294a4f38483c4463a0f0fff310bb8522f812b79543bbe3716993fad924053af + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.3.0.tgz + version: 26.3.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r95 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-11-03T15:28:43.070220357Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 7243f16b28a0a7d9c71c41942a84ec864109d2b50609390219ae98a83744399f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.2.1.tgz + version: 26.2.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r95 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-10-20T12:15:35.124537842Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: c8339e7dcd379243d523a2d1fa2412218ee5f60dbb1d5c7bf193a5b7220bc2ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.2.0.tgz + version: 26.2.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r95 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-10-20T07:20:24.711143165Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 9c4975c5362193d73f69958a4fd708b0825962ceb5d013cc4a502e76fb59c69c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.1.0.tgz + version: 26.1.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r95 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-10-19T11:26:19.085332868Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 08745832b21fa00c9c3203c6c0f543fd92e8414e56ab9d004114ca1260da54b3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.0.1.tgz + version: 26.0.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r95 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.6.0-debian-11-r0 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.0 + created: "2023-10-16T17:54:23.807552799Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 537a66383942212f4ffeabc6701989d8c79b3504aec5d7a5e43b1df5f10e6cd7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-26.0.0.tgz + version: 26.0.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r95 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r72 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-10-12T15:16:49.053054407Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: eeb48b337fd0f0755579a2fd6fbe3a2299117154bed6ec16ddf3717d9118ba49 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.3.5.tgz + version: 25.3.5 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r95 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r132 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r72 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-10-12T11:46:07.397988175Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: d1057bdf14c0c5eef0ce0e467ebc8e953c2082cf7d59468a46c73310547294ed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.3.4.tgz + version: 25.3.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r92 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r130 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r71 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-10-09T23:52:22.574866634Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 8bcdebd996782788a1e4f523a06144113d007fb57c45bdd9135752c5c1f91a4f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.3.3.tgz + version: 25.3.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r84 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r120 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r61 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-10-05T08:12:12.232427908Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 4af5a429f1b18168643d06fc0885ec64fe4573dd78b550c0fd9329b385d8bdfe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.3.1.tgz + version: 25.3.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r84 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r120 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r61 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-10-03T14:09:26.431566186Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: e557839d86d8c201d4f4a9a269020697a9c1c7903025cb88ac9314ab04dc3056 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.3.0.tgz + version: 25.3.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r84 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r120 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r61 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-09-29T11:05:54.682341791Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 58521dbb4689f5f030334e8860a9335f63fbd43ddd2ac4188197efdf56d401d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.2.0.tgz + version: 25.2.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r84 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r120 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r61 + - name: kubectl + image: docker.io/bitnami/kubectl:1.28.2-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-09-25T15:26:42.45103435Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: c99c889ad99f442b0774ed7ac58fa041f74fc17fc5299185cef415d9e4d3ecb4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.12.tgz + version: 25.1.12 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r66 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r102 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r44 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.13-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-09-20T07:21:07.095409187Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 074e83bc8aac30bf44fdde52d8f14dbc106684a524fdd6b807e1f136b7b944f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.11.tgz + version: 25.1.11 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r66 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r102 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r44 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.13-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-09-09T15:59:12.645142477Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: a8d26a86397e27ed2307e2c805387bbeb1b55c16bc451bf993914df1ae48b375 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.10.tgz + version: 25.1.10 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r66 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r102 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r41 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.13-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-09-08T08:26:04.836881738Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: de331a1373032a1d6a6d28596fbc0c9cf6792002debeefb34ed769bd66d09b21 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.9.tgz + version: 25.1.9 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r66 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r102 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r41 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.13-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-09-07T10:41:11.052388312Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 0d5128ee6c889cf80b742b1e66d1c26d5b2e820c8e5b5815841bb1ccf904be7c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.8.tgz + version: 25.1.8 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r66 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r102 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r41 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.13-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-09-07T08:26:13.540550706Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: df8711bd0bff315c3ec223d8959090b160783d571cda1d0f599353a33271fabe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.7.tgz + version: 25.1.7 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r63 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r99 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r41 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.13-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-09-05T14:50:25.338690432Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: fa7b55231e3e16369f7d70f8f230a2c91c6d808fb72df3e17b4ee122435df114 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.6.tgz + version: 25.1.6 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r57 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r93 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r35 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.13-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-09-01T13:38:55.447415092Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 742a7f89e6c794b0ffa3dce3d7fb53998d833c7d52db9ff8674b649e8b8996bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.5.tgz + version: 25.1.5 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r57 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r93 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r35 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.13-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r51 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-30T12:44:18.316002498Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 33ef361eb716f3f0194e83d0eef8fec30f72b91f25ccad16c36f4fe52c0f9446 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.4.tgz + version: 25.1.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r49 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r85 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r25 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-31T16:20:28.194639275Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: e7cd6b2f312ee12872198ab9494ef4397cb1f33cabed12e8bf770fc23e7ae175 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.3.tgz + version: 25.1.3 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r49 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r85 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r25 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-28T08:21:11.585971893Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 780d37e87c9dd801dbd246684e85152b5b47491d7767fb7b2a0c8f06123ce96d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.2.tgz + version: 25.1.2 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r49 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r85 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r25 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-25T09:05:32.407337537Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 442bae81a4854b31026b7a9605b548fe457b3cf869990b722b0f378f0c537eea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.1.tgz + version: 25.1.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r49 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r85 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r25 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-24T14:48:50.03519425Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 9a811d2715b953ce2de8798ef8aca973e064a4d8c3566a484b0ed3af99f06e3d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.1.0.tgz + version: 25.1.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r49 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r85 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r25 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-24T09:09:25.458269037Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 60eaa410312be2a5b88c6eac6c43b09c481b0a147e554ec114a628f03d3e9da8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.0.1.tgz + version: 25.0.1 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r49 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r85 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r25 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-23T09:52:07.144396804Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 964d42726a393f68f43c263133f62b3f75d73232835b026564cb8d8aed32b363 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-25.0.0.tgz + version: 25.0.0 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r49 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r85 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r25 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-19T21:37:38.077235128Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 0b7301a8cae945bd65f9dc5cca18c1e6e833971200cb7a405e42006380b5a131 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.14.tgz + version: 24.0.14 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r48 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r84 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r24 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-18T17:37:37.291781776Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 377fc50ffb47993ad17e64813228882dd2d5e582edbdb4cac6e7c50690193313 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.13.tgz + version: 24.0.13 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r48 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r81 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r24 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-18T16:54:01.499364429Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: efca625fb26387d3d85c1323521bfede116c21bf62a8cd703ab7828f8f671b0a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.12.tgz + version: 24.0.12 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r45 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r81 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r21 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r26 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-17T17:10:49.6677166Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 2007b586ad7427f05719c2759ace8a6f336a4cde9306a3acdc5b0915efc2b2f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.11.tgz + version: 24.0.11 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r36 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r72 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r16 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-11T08:02:34.384025883Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 9b4e4c2778d6718d1232fca52b37d8016d13ab4ccf1a44a1876982247475a4b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.10.tgz + version: 24.0.10 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r36 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r72 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r16 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-10T12:34:45.829421015Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 488a49d61f49efe504d94e1c71bc7650eef0d67edbf69daa43c903c4c0e033f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.9.tgz + version: 24.0.9 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r36 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r72 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r16 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-09T13:12:29.029532412Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 6c2ed6aa75b096e97a25e760e2cd3135f9501a10e113c00112b7683a2c80c681 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.8.tgz + version: 24.0.8 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r36 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r72 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r14 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-09T11:45:54.731584196Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 0d8326590b1ffe33ed5d266c93b7ce6a2d556d6b257803b9a288123b62850db3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.7.tgz + version: 24.0.7 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r36 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r72 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r14 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-09T09:19:33.706967295Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 72032139350cc78644dfb3c583a1e333a9e5793a27dbdafdd3c2c8211b1cadd3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.6.tgz + version: 24.0.6 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r36 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r72 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r14 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-07T17:24:04.753218619Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 8086993746c5605289c03178c0e0a0c4555d46c75601d4510a661ac782c5b8ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.5.tgz + version: 24.0.5 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r36 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r72 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r14 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-07T11:56:52.673676416Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 030b87f2bebabe150874d7f4c957c1913854e260288e98bf0edf6ee4aedd1316 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.4.tgz + version: 24.0.4 + - annotations: + category: Infrastructure + images: | + - name: jmx-exporter + image: docker.io/bitnami/jmx-exporter:0.19.0-debian-11-r33 + - name: kafka-exporter + image: docker.io/bitnami/kafka-exporter:1.7.0-debian-11-r69 + - name: kafka + image: docker.io/bitnami/kafka:3.5.1-debian-11-r11 + - name: kubectl + image: docker.io/bitnami/kubectl:1.25.12-debian-11-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-04T17:15:57.304195796Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: bb92706f6dc224559d1677ddda5c5bcbeb66c759fc7452bba7cd2224740c3129 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.3.tgz + version: 24.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-04T15:08:05.141165042Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: e2d8540878598c2e1b65afbd6bbafcaf3021915ddde435dd98841e9b04fa7f2c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.2.tgz + version: 24.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-04T07:31:42.904304382Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: a9b694ea53f35057b1337fdec3189f6bdbfa7bcbe422616075be32a443333ab3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.1.tgz + version: 24.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-08-03T14:00:30.393931918Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 329649e8f95645a2fa1a1c4aa09e96cd85b244a74c9482494610432cdd0e9e24 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-24.0.0.tgz + version: 24.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-07-25T19:48:44.581656303Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 45d997d3d434339dc366c34379f7d759b2d81fe20b95f01556c04fe19986f190 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-23.0.7.tgz + version: 23.0.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.1 + created: "2023-07-24T12:43:43.116982615Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 3a398ceb0aa6618c5c99a47f2fd7af60c4b30dfca056dab0045d4790f64b53e4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-23.0.6.tgz + version: 23.0.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-07-17T16:26:13.241079622Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: fc6149bbb989c432b1194b7773dda6d2cda630dfe169388359d36805a62e7d2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-23.0.5.tgz + version: 23.0.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-07-13T18:58:36.291507771Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: d4bc3d226fb69bc3dba86fef3d0026e297bc68368773db1f657089064c80b0c2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-23.0.4.tgz + version: 23.0.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-07-13T13:50:06.886183481Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 5e048758413e4654c45739ae2ba26d88da7a421e4393f3c22fdbb7d626bafbf6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-23.0.3.tgz + version: 23.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-07-05T21:15:39.926509634Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 8a6e8830b714ec854763b5d9f05e20b300fe5fa7b872a675e2948021e2bb6aee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-23.0.2.tgz + version: 23.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-06-27T15:24:31.802266421Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: b777bcee6ce5a192afefdf529aba28427d4c6e3f4a92f1475fd200f07a34185a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-23.0.1.tgz + version: 23.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.5.0 + created: "2023-06-26T22:05:19.802026368Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 0d2c52605f560d9f6619ac735cb50be5e90dd3a97fd060d5280ea2c763df37b3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-23.0.0.tgz + version: 23.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.1 + created: "2023-06-19T10:38:32.80741444Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: c8a54d44096c1ff21cd73454b4c7d607c8ea78363cafec05ec0a84fda6874fa9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-22.1.6.tgz + version: 22.1.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.1 + created: "2023-06-07T04:50:07.434021597Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 3d9ad515a4ebaadc05fbf7ebba496f234f0b0267b592e6e731d801b5a378358f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-22.1.5.tgz + version: 22.1.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-06-05T15:52:23.40484645Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 797229d1eaa9f69aa8969ccda2a44ec604781fa54822fd073fcda783052f00e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-22.1.4.tgz + version: 22.1.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-05-21T16:59:59.687250089Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 72e62d237cb21102aaa7c19c30aa4229244763f2ba5b4da6384e31b945988d35 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-22.1.3.tgz + version: 22.1.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-05-17T08:30:26.725122115Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 851b721ab2d3d4327ac45944f62343b90b18c37dffef7f4b264d50f9a036693b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-22.1.2.tgz + version: 22.1.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-05-10T09:52:05.320394907Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: cdd24d52e39277ff230f269fa834a246746021990ff4ea8fe8223e520888305a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kafka + urls: + - https://charts.bitnami.com/bitnami/kafka-22.1.1.tgz + version: 22.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-05-09T15:50:22.342041119Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 4eda337a7a2b5d03b4375ef91363cd5093ac2787238be622640629f7cae27ed6 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-22.0.3.tgz + version: 22.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-05-04T15:14:07.87337957Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: e63012e0ce8b4f442deb33cc39bed150913e91a7a6ec4fbf50efdf0a7ed957d9 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-22.0.2.tgz + version: 22.0.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-04-27T08:46:09.253008114Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 8b9c94e8342aadc20fd01aef0ca9e2cf5c2ba0cd332a2c89c6c9c1b2561991f4 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-22.0.1.tgz + version: 22.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-04-24T06:01:21.587563936Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 6d1cd0d1c159daac2f8e925e63789d823ec098f54a00902eeb3e8a7decedca94 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-22.0.0.tgz + version: 22.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-04-20T08:57:41.386601787Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 7e9bbeb4be0e432dcde172eb0adcc0007af0c40429cd65485ecffbb2a3115a28 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.4.6.tgz + version: 21.4.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-04-19T08:07:34.732547115Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: fb1a686445bcf38b2980c33a57004e2f6bda580170fbafc5a739851c005017fc + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.4.5.tgz + version: 21.4.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-04-01T13:03:37.327028929Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 162cc14e2493ecf1062c089397f1503c35a0d5d1c0718a64bc7d93c1e512ce3d + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.4.4.tgz + version: 21.4.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-03-31T08:43:15.385335383Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 4c03d04cd0a7b2bf2520838de183cf96ce612b62c3006e1fe3c169504a2b6430 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.4.3.tgz + version: 21.4.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-03-28T08:14:53.303965173Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 5d716df79f29738a7570c17b08003f6b126c34664ead89334d049c07d243dec4 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.4.2.tgz + version: 21.4.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-03-22T05:15:25.425338721Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 2affd2880eb90d138146f91b4a45a5567eea6879f2b6c83e7a102b1528f37b41 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.4.1.tgz + version: 21.4.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-03-13T08:10:30.048127665Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: ddb27056a05993e708e10d48934252a68f28bfc99651342b5ef1c4799808cce0 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.4.0.tgz + version: 21.4.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-03-09T17:05:24.593838645Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 3a9fd4d2d78bd63413457f021d2112b9ee2556b4c29bde2ae31406e7def18c0e + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.3.1.tgz + version: 21.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-03-07T09:56:20.736216168Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: b95207263b82cbd3e0976c0617c68b16cb88d428fae92de30b8d445d07621295 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.3.0.tgz + version: 21.3.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-03-03T08:44:14.942364475Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: d58f09b65bc86b70b237df3fbf6e33a7eeee89e607b505ad436d00dda7618d76 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.2.0.tgz + version: 21.2.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-03-01T10:53:17.319878053Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 03853043815e05564ce0ab16e10a573eb2e772aa293e118fe8b66e7f9bccad75 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.1.1.tgz + version: 21.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-03-01T10:27:56.410611168Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 7d117089ff7de0a213b2f37462e8ac8985969d956d4aebd90519f9d51a86b71c + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.1.0.tgz + version: 21.1.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-02-17T17:10:39.275101101Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 1d31365df2c6f2eab781c198c2e43f4dd5f435f846bb821fe788dded4a989767 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.0.1.tgz + version: 21.0.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-02-17T14:30:23.340964403Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: db64877866ebfc555efd214df2fca544727594cb4c4db781fc408de66211df8c + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-21.0.0.tgz + version: 21.0.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-02-22T18:28:55.248880699Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: e0e5df99e3cb8f9f727adf448373256a31219f8ab0374662af2c302bee92b059 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-20.1.1.tgz + version: 20.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-02-21T17:42:31.69496985Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 1dd8cd74e5933d686edf9c6e39004f00a350a030bc8c45c315cc71ee98510a13 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-20.1.0.tgz + version: 20.1.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.2 + created: "2023-01-31T10:35:24.923303324Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 08f81afcc0ab5b9e7bb6102eaf620b0fe1e84e0884b142b9494ce41e631fd150 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-20.0.6.tgz + version: 20.0.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.2 + created: "2023-01-24T03:11:16.468273126Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: ff062e32e2da651639911d78fcf4b0da51c81571f29ae85e3fdaa28a672d92eb + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-20.0.5.tgz + version: 20.0.5 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 3.3.1 + created: "2023-01-13T15:27:11.772954885Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 6dca1bb19e4d298b1d0d857195f990b5b1373a3040054acea818ff2ebc94c7ad + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-20.0.4.tgz + version: 20.0.4 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 3.3.1 + created: "2023-01-12T08:41:12.560248272Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 3f1006c26f6e3f89e441cbe5e613e73c03ab6aca56c84decb58643d800e35db2 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-20.0.3.tgz + version: 20.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-12-19T09:00:59.746208175Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: b77a512c2e504c06b339d820a3996611777fe7c4731d60e216ad15343bfd2fb7 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-20.0.2.tgz + version: 20.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-12-10T00:32:11.532567004Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 88b50df2b83bbbd8330a95b2778577880f11e1f23b38edd4e2f00cd4ac231a90 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-20.0.1.tgz + version: 20.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-12-06T10:50:10.185141642Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: e6d2939825527b1accda306408a64d9ead05777c177824ca7f0a8e28fcbb9381 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-20.0.0.tgz + version: 20.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-12-02T08:29:51.042961795Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: f858064060a3dc2b48fffd421abf124c5e7c87984bdf088c28c1c3cfe2bce695 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-19.1.5.tgz + version: 19.1.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-11-29T10:37:21.673473666Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: b2b3c1719bb698551090f0fa61fea652e97663a2e168fd926d1e172c83fe2998 + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-19.1.4.tgz + version: 19.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-11-11T11:39:37.497370029Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 8ef2e2edac596039bc3a86f7a913741114ba2e92b386e9f03b39123c9eb40add + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-19.1.3.tgz + version: 19.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-11-08T15:17:09.907491801Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: a9deb95085fe1981b1a05c111b7975c1ba2f4519fddcc7457d1cf679639890dc + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-19.1.2.tgz + version: 19.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-11-08T09:20:31.40184713Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 402a8942a5405f0ff6de15fca15dfb5a72b0a7f76a39869f0bdabc47c5cac0ee + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-19.1.1.tgz + version: 19.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-11-04T08:54:57.938446347Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: e733ef314c56456c07fb1d4f308ea0da9964ba1207bc6b56cdcfb19162d5daad + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-19.1.0.tgz + version: 19.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-11-02T10:37:02.480184614Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 8d5be1abe4a42d593b690bc91fdc1ef75460f73a1ebb59819c54ccfcbb199dea + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-19.0.2.tgz + version: 19.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-10-21T10:30:40.885086063Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: df6bccd67e7dc45f80d76e9be196b233ab5265c12b5a24b0e6a2453b6767b92e + home: https://github.com/bitnami/charts/tree/main/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-19.0.1.tgz + version: 19.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.3.1 + created: "2022-10-10T16:29:39.288774715Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 0bbcca4769101d665cf2a9240caeada883c29b6fa9e3383f2fa2af6c333acd71 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-19.0.0.tgz + version: 19.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.3 + created: "2022-10-04T11:26:41.220735848Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 2b1bea7f6b46bcf2ea43d0f39bf02e367fe55c38643a9d3eef8f136105de000b + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.5.0.tgz + version: 18.5.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.3 + created: "2022-09-21T13:33:15.656514561Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: dec1ae3ebf61f7d2dd43441afd7c2f0cace647adc790b87270d5710eb251c88f + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.4.4.tgz + version: 18.4.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.3 + created: "2022-09-20T00:31:52.625298039Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: fbc64a5afb4de750531d945b863ebc6cef029b116ed861d53950096100bec997 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.4.3.tgz + version: 18.4.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-09-15T13:45:44.161256971Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 841b2ecd70d957b869019a3c2d7a8040af65886dc87cfba25e5da13ed17cb1dd + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.4.2.tgz + version: 18.4.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-09-15T11:00:58.720855547Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 0d1b5365d30d94a0118133f3dd9a2f4eaac60e0ded3045f1ca0ee9a7fa038c1b + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.4.1.tgz + version: 18.4.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-09-14T09:23:07.672340801Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 8b424b93e5c7a7e44fa1334dfc8bfa5680155556fa352467bdaafed8fcca5935 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.4.0.tgz + version: 18.4.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-30T05:25:19.185119101Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: ef84f9f88664e8414b9816de15cf10818a4958bc90785483d1398f7011c8fad9 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.3.1.tgz + version: 18.3.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-25T09:13:40.631830586Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 29d8463ad740535b027e47360340a6ce0e2a7ecd2fbebff53b3fc42fd372b992 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.3.0.tgz + version: 18.3.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-24T15:29:49.497843377Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: ce3b7f1af8d0d5d3359b6bd2528fac817eb74f0a050a5509a68a0cd3671f0c53 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.2.0.tgz + version: 18.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-23T23:28:45.712985351Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 7c8805f611bac26a8e6f0e0f64c481164a451f3eb8905c3e49ab474541309a88 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.1.3.tgz + version: 18.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-23T08:47:12.507144011Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 56dc4360c6cc41368b77a3648a3d2661f74808fb155f36b4ddd017b958310834 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.1.2.tgz + version: 18.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-22T17:12:56.787174207Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 8897aafe01632c3d0ce545567f0c70e101cb4af0fa3e19441f54dc760c595ba2 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.1.1.tgz + version: 18.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-09T12:49:46.472725343Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: d6765783d521dff249d8cac97b13db8b3774ab8b9427da79c4c2505766595a68 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.0.8.tgz + version: 18.0.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-05T14:38:20.165419138Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 77c7782d7fb3590e9043371a87ffaa7cc84194cb314db97e98a7297ac376577a + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.0.7.tgz + version: 18.0.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-04T23:15:00.07479248Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: cc9eb5dc9583f2696752866e089c8f74c18b066bf863e2ee45f17518a3c11d43 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.0.6.tgz + version: 18.0.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-04T08:12:53.394766346Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: d5ff6827c52513fe62d4c1c9544027424da1f57aafeb7ee5df333ae15c4d4b6e + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.0.5.tgz + version: 18.0.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.1 + created: "2022-08-03T08:00:32.623044267Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 262dc418a49a264ab6504cb51fd42ff189f2c882328f3030a9f4d1b777ed7279 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.0.4.tgz + version: 18.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.0 + created: "2022-07-06T09:17:51.358902754Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 1f05cb5a212f798c31eb5a7aaa55274b3e1fa48861e59310df39d65e121e1281 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/bitnami-docker-kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.0.3.tgz + version: 18.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.0 + created: "2022-07-05T09:21:04.458394053Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: 3a7c283f42eb24caeb1537b33d01f5139c92a6497557e8dfccc00869db846b8d + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/bitnami-docker-kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.0.2.tgz + version: 18.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.0 + created: "2022-06-15T10:13:10.915850843Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: sha256:8b05770aae1a6bbaf13de216dee918a5a798c05b82b0e865d887aaea5b540dc7 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/bitnami-docker-kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-18.0.0.tgz + version: 18.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.0 + created: "2022-06-11T11:56:59.302710259Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: sha256:9831d9005b8c7a2cbadbee857e4344c22d270b6201643dfe4fc2335bb3d2e919 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/bitnami-docker-kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-17.2.6.tgz + version: 17.2.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.0 + created: "2022-06-08T18:22:18.823040372Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: sha256:a1a824cab02e39b42c3b726ab8f121e3786c8b4402ed5071b65f004a24494ef0 + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/bitnami-docker-kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-17.2.5.tgz + version: 17.2.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.2.0 + created: "2022-06-04T04:41:54.006947483Z" + dependencies: + - condition: zookeeper.enabled + name: zookeeper + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Apache Kafka is a distributed streaming platform designed to build + real-time pipelines and can be used as a message broker or as a replacement + for a log aggregation solution for big data applications. + digest: sha256:3f1eb5ed0ada2ca18de6114f32bc03dbc7d54c5c57235d187896c2ae8e318b9a + home: https://github.com/bitnami/charts/tree/master/bitnami/kafka + icon: https://bitnami.com/assets/stacks/kafka/img/kafka-stack-220x234.png + keywords: + - kafka + - zookeeper + - streaming + - producer + - consumer + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kafka + sources: + - https://github.com/bitnami/bitnami-docker-kafka + - https://kafka.apache.org/ + urls: + - https://charts.bitnami.com/bitnami/kafka-17.2.3.tgz + version: 17.2.3 + keycloak: + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:25.0.2-debian-12-r2 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.2 + created: "2024-08-13T10:16:15.185134672Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 2e86f272131e78c57a2b216a4b6fe0cf12f5a03663450232a59dc1aef9b1f3ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-22.1.1.tgz + version: 22.1.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:25.0.2-debian-12-r2 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.2 + created: "2024-08-06T16:08:15.518588024Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 6cb0468c4a24abfa4a0293a592021d30ae80644e4bdf830fcd8eb49cb58e4291 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-22.1.0.tgz + version: 22.1.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:25.0.2-debian-12-r2 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.2 + created: "2024-08-06T14:39:27.939564028Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 517f693eec05c74d7559b443004a96f6793b7d9d170b7bbbfc14ab80e9b57048 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-22.0.2.tgz + version: 22.0.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:25.0.2-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.2 + created: "2024-08-06T08:23:07.163244181Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f7e4e04234a16411aa51a0dbd43fa8ea90269569ad69e0144467793b15fd6992 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-22.0.1.tgz + version: 22.0.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:25.0.2-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.6-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 25.0.2 + created: "2024-07-29T16:15:41.196126018Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 4cb9901e6d8e003919d7468b9b1dd91f6806241d6b41a62762796fd9dd29f737 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-22.0.0.tgz + version: 22.0.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r8 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-26T14:32:27.508409379Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: eb69214b3908732e978d6e748a3c42bb635a1df63065597bd257638fb49e89e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.8.0.tgz + version: 21.8.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r8 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-26T13:54:23.99967049Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: d55e12cf72a05a40ed1b88c5e1f8c3062dfaf3f472072f3343272562ebb8c8cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.7.6.tgz + version: 21.7.6 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r8 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-25T06:06:47.325688867Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 62e2cc24b1c5273f822c5f1b1568c9dcb22617f18ab112dcf2958813856aa8b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.7.5.tgz + version: 21.7.5 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r7 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-24T10:11:34.649258263Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 89273849ead320d856f4108e9277c3e1d6d4c3ba123971d08a4a52e8263c9514 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.7.4.tgz + version: 21.7.4 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r7 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-24T06:28:03.267645534Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 8e258d24cd6b9699103531f2a3a99f40ccb40da7965e677ffa3ff28660d43eab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.7.3.tgz + version: 21.7.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r6 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:6.1.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-24T03:19:35.802250648Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: ba86c0c4b896040fae34ab77711d4776f01a76ab0e92c2dcda7ee931401c06f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.7.2.tgz + version: 21.7.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-18T08:32:37.691016536Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: db020c965177c268459a4bfc923aa900f54285f8ae88a8c3044f0f4aff80f4f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.7.1.tgz + version: 21.7.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-17T13:57:47.756203042Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 681551e09cf05f7b15ee8455bfefd864c89cd9433a9d7752ea6cb350c46f329c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.7.0.tgz + version: 21.7.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-16T07:23:00.078144189Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f64022772656e92c19f68dd029e66a3de509ae4ce40436fcaa8cbcb95c44e3bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.6.3.tgz + version: 21.6.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-15T11:27:39.116434622Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: a297126365ac9d1318ed4cc8abd9fe1bb0cf512401983ea465c4fdad9eefc8ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.6.2.tgz + version: 21.6.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r1 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-11T08:03:22.622271306Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: d412e050745a40aa880d8cdfd5765f5a22d134e6c04b241f3264b7698912e687 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.6.1.tgz + version: 21.6.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r1 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-09T06:56:06.820367906Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 6ef1d4ec907d2851f01b5cddd0b6df920c2e953011a2b032a3b69ba495aba9b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.6.0.tgz + version: 21.6.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r1 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-08T10:16:33.921445012Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 1c0023c77010886088c740b5364a0e359b7fb8becb403c0dcfb6d73fdc4fcbbf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.5.0.tgz + version: 21.5.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r1 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-08T09:05:13.449619104Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 8900b9f45521114958195d4907a3aab5c18f51d2a3eb58e68dea43eaf1aa6e64 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.4.6.tgz + version: 21.4.6 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r1 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-07-03T07:47:52.178657351Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 93ef250911f8d8b04cfd9de45a1492e3c8b164ecdb8f4bc59b01023727a7550a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.4.5.tgz + version: 21.4.5 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-06-20T09:11:28.587495987Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 4569ec5396a4de4adcdebc8f361b4854df7e88d61dfbae900dad10a87d10d58b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.4.4.tgz + version: 21.4.4 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-06-18T12:15:06.714872696Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: cdb8a5530d61a14c1e0e963b71a86d677b9ee3b9b0d694462b580526a8667188 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.4.3.tgz + version: 21.4.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-06-17T12:50:26.985481034Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: e61ea25ca923d34301db6a6c18fe46a09d11beea39e34e756e8c3160a9a0c8a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.4.2.tgz + version: 21.4.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-06-06T15:45:22.903750444Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: e2d6677af748049909a2ef4b49912deea5d1d450b558f6c50e5e0073c92b6bee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.4.1.tgz + version: 21.4.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-06-06T07:31:08.38116939Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f27fa4dfa4ac97947508ce784e0507bbd278f8dca52d8faada22a5671670be93 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.4.0.tgz + version: 21.4.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-06-05T09:43:51.617719002Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f03a4ee5ef1c2db017c152d96bc889095f9cd79da62dc6604cdd16ab7575b466 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.3.3.tgz + version: 21.3.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.5-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.5 + created: "2024-06-04T17:45:29.35447911Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 1ae32d8deb88f0948ec72eafffd7b04d66fc6c38ed92d96cd75237186117d100 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.3.2.tgz + version: 21.3.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.4-debian-12-r1 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.4 + created: "2024-05-22T15:49:23.044072963Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 0d7803e5d4c8a3e471ba1fa7a7f6aeb0a99063fb927a79fc6e398a459ba1e859 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.3.1.tgz + version: 21.3.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.4-debian-12-r1 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.4 + created: "2024-05-18T01:37:08.817314311Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: b432c5bcf8efa862c190ce4085c26f62420b202a974e701bf7c99b2274668612 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.2.2.tgz + version: 21.2.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.4-debian-12-r1 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.4 + created: "2024-05-14T05:15:21.950055462Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 514e613e41fb65da006fb1b0b1fd0b19aaaf365b574839ce3c8bebaa2a7e7796 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.2.1.tgz + version: 21.2.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.4-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.4 + created: "2024-05-13T14:53:10.195374527Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 21b3ac457c9ecf5878cdb1e87e54961c405eecb017b90f564821c69b9c6cfb2d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.2.0.tgz + version: 21.2.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.4-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.4 + created: "2024-05-08T10:53:28.739675586Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f388ebd9bac88f7273c52045d719e8471c33611eaf4938720f5523dc66fc101f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.1.3.tgz + version: 21.1.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.3-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.3 + created: "2024-05-06T09:21:00.007003367Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 3d4d94bb8a187acba107f26b0b2814580c46579a1fa4d566138650aa95e88652 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.1.2.tgz + version: 21.1.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.3-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.3 + created: "2024-05-02T06:06:12.847406985Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 5008c6d4fdee9ab50f4387e26a11f235249e1019b57ff7995ecb42e52d3cd27e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.1.1.tgz + version: 21.1.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.3-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.3 + created: "2024-04-29T13:42:04.739468692Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: d83f8f1ee01e7226d80095206defa8e8419bbda66ebad5494f21e99f26051bab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.1.0.tgz + version: 21.1.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.3-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.3 + created: "2024-04-25T13:20:18.660280027Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 273e5108afdc7e2d0da6845928f405751192939dd27cf78583b3e00094d70ec5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.0.4.tgz + version: 21.0.4 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.3-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.3 + created: "2024-04-22T08:08:16.121766504Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 17de0731b9b936857e44910ad8966263d1414d7f95615a2067b1a7be2035298c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.0.3.tgz + version: 21.0.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.3-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.3 + created: "2024-04-17T16:57:58.254494355Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 0e073d2a75bc285a2b69aa072fbaf4e32b38706feba729ca82f044401166047e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.0.2.tgz + version: 21.0.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.2-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.2 + created: "2024-04-15T13:06:08.146806988Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 24c2ae120b0e44cf3bc116a8c9dcf22f3224f9874886a104463ee167ffeea2d2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.0.1.tgz + version: 21.0.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:24.0.2-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 24.0.2 + created: "2024-04-05T16:20:35.034948197Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 732a3cd022ac03d2c5da3704d9e474ea29898f7b86c345efb502436eedd0b65a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-21.0.0.tgz + version: 21.0.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r4 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-04-05T14:17:00.831832825Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 0f57d80a441a2b6769c9584c76dee08cf377ff6f54b3cc91735a3ab2f77eb6aa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-20.0.1.tgz + version: 20.0.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r4 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-04-03T13:31:02.423514509Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 88295f21439b638e0768737ed0c631c7ea1baee792904e3a75fcd768b178e20f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-20.0.0.tgz + version: 20.0.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r4 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-04-01T15:15:12.356854382Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: e12eceb2c30072f912af302ecbfd352776509f513bf26f544484b945e3666fb1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-19.4.1.tgz + version: 19.4.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r4 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-04-01T10:43:49.861105858Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 483ba8443538695fd45ac77e0366f38942c0b4f2b8942eac7df1ed0d5d0f601a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-19.4.0.tgz + version: 19.4.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r4 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-03-21T16:45:50.406837527Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: c29239eb5f229fcc93e62ac8da5e7511343dad336928b2a8518fc925a2ad719d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-19.3.4.tgz + version: 19.3.4 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-03-15T15:55:49.441067725Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 96c87a417e499d2a7d7d41db85f3ff8b831d4a1fa63f338d343cfdf36da9687c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-19.3.3.tgz + version: 19.3.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-03-15T02:25:24.485281008Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 3cc2c5eb144de1e942db49f11a5a3f63565f16a1b4484234ba7e74ce5058cbd2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-19.3.2.tgz + version: 19.3.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r2 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-03-15T01:47:57.866522665Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: e2ef16d56a396a9760497868d68039d038ce0adee2d43a9faa18fdcb153a95f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-19.3.1.tgz + version: 19.3.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-03-08T17:00:36.303283808Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: c757fbc2ca83a42a1b334157603eb186fb60f0c0e4452b1ba7e2697176740d1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-19.3.0.tgz + version: 19.3.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-03-06T11:42:28.268413346Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: a51d1fd24bf8354e18d373c541d1cf74b2d2a92dfb927675945f6c387b7e72ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-19.2.0.tgz + version: 19.2.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-03-05T15:10:17.755738154Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: eafdd13dd85ef369ac6e417563049b3303961db8a29d42148ef494f3faf5d82e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-19.1.0.tgz + version: 19.1.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-03-04T10:36:35.077736312Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: fee963515c0994f74ced1910a1b658157455ebf050b74385299a19bcb34a6077 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-19.0.0.tgz + version: 19.0.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.7-debian-12-r0 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.7 + created: "2024-02-22T16:33:37.830514983Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 0b885364a8c9c60783fc12d567b3dd4aa99a21a22fce93b2e593b3970ac39447 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.7.1.tgz + version: 18.7.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.6-debian-12-r5 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.6 + created: "2024-02-22T16:04:30.37770999Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: ccf579191031c348dae6ff135983a0bbc3d8cb3704ff1104d13f4492e7580f47 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.7.0.tgz + version: 18.7.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.6-debian-12-r5 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.6 + created: "2024-02-22T11:17:17.603694265Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 8fd5a0e8568531528e6b5d31cbb486b9d7b3b9a1d922efe82ce25a518b236936 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.6.2.tgz + version: 18.6.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.6-debian-12-r3 + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.6 + created: "2024-02-21T14:58:00.480149665Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: d82403f817afbd2186c7bc314e3cf835e07f71ba7fe30b972a25c45d26b699d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.6.1.tgz + version: 18.6.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r4 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.6-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.6 + created: "2024-02-19T15:21:33.405486232Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: c520c2369f4444ba5f808c8b7b6c0a749cce8f74ed2442f942dfa4476bab4cd8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.5.0.tgz + version: 18.5.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r4 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.6-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.6 + created: "2024-02-06T08:31:24.90150485Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 25358c8eeed4af331fd7dcb9f63f4dcd521ecdad24c84ae5ed84925c851cab2f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.4.0.tgz + version: 18.4.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r4 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.6-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.6 + created: "2024-02-03T08:05:10.155977148Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: c563d7c67809039395f72cbe97731232203e908f6a5c195be902b96d305f7fde + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.3.4.tgz + version: 18.3.4 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r2 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.5 + created: "2024-01-29T16:53:41.274194307Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 7098858b327348a235c9c1715c14864cd33847c9943c746971c5129c6ad15e7b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.3.3.tgz + version: 18.3.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r2 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.4 + created: "2024-01-29T09:42:23.557821707Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f5d32d4198fcffd75f1ff52530f91ba4b89125b9157ccb46293c2ab64ea03e0a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.3.2.tgz + version: 18.3.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.4 + created: "2024-01-22T13:32:41.916426665Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 0e7008dcee409fbcfeaae86af66cb1c2a82e90083c615775b8da5a1f3d0f066a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.3.0.tgz + version: 18.3.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.4 + created: "2024-01-18T06:29:54.237930746Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 5681c21191e76f9bb47a09782fda5fdaa625c9747609e9be4d2715951e133300 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.2.1.tgz + version: 18.2.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.4 + created: "2024-01-17T16:37:07.26304522Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 006f1f6199baa22e19995a1a65e5de7dd4b723718183468a9362dae188091419 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.2.0.tgz + version: 18.2.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.4 + created: "2024-01-12T10:48:32.732587075Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: ed41f88af142328a4ee4d817d0f9035e3ce04a711ee19a8e4ba2c2e12368dc37 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.1.0.tgz + version: 18.1.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.4 + created: "2024-01-09T09:57:43.795144996Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: aead2f415875ff64af4c2a8fab83fc7965eea0045cb6baee25287765d2e0fdd3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.0.2.tgz + version: 18.0.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.4 + created: "2024-01-08T17:16:09.674439632Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 7c4430112c4b58836eb28f86b31079058f6198c26ab6a684351008e9a1ea68de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.0.1.tgz + version: 18.0.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.10.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:23.0.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 23.0.3 + created: "2023-12-27T08:47:00.929651668Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: e1ead5c7f77ceae0ee3f99f18c11b18da883644c43ddf3fdd40247815127f932 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-18.0.0.tgz + version: 18.0.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r1 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.5-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.5 + created: "2023-12-07T11:23:54.404740295Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f7d12cfb0bbeb3ee3051fe985927360753180b025a73d18f1943be73530b12e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.3.6.tgz + version: 17.3.6 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r1 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.5-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.5 + created: "2023-12-05T12:24:30.958697819Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: a00ba223f87505f8522218ef2dc16afd9a934a98452239f39ea97a0603f7cb3b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.3.5.tgz + version: 17.3.5 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r1 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.5-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.5 + created: "2023-11-21T18:35:24.083869848Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: b0ee2fe4c72c32df65f58c04d3cee8a3143757b757ecfcd5696114df648193af + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.3.4.tgz + version: 17.3.4 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r1 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.5-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.5 + created: "2023-11-21T03:28:45.219587069Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 7ba3d606c29e747068e76aa57a070bb756f8a6bfcc64b6cdd7d36ae5c93e81dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.3.3.tgz + version: 17.3.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r1 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.5-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.5 + created: "2023-11-21T00:22:09.921327227Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 2a42cbd42fc4d3b7c5d94469deda30d3b8809afffaa10f5161ecfb5a76e0e173 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.3.2.tgz + version: 17.3.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.5 + created: "2023-11-08T16:24:53.220472094Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 33e0ef6005a3190f4aa622793118418b7420028d6c86e57001d81c680d68fbfd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.3.1.tgz + version: 17.3.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.5 + created: "2023-11-06T10:26:00.772011417Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f1a6fe85188438ef51363d48c9ef0819362b8b00f9ef2244811baa2f9ba893ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.3.0.tgz + version: 17.3.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.5 + created: "2023-10-31T10:50:16.582688305Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 629e28cda9022e496aed3cde8cc9d5df75ac2677303f8c1e2eec11f250c131ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.2.1.tgz + version: 17.2.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.5 + created: "2023-10-27T08:10:46.22062478Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: b50ffc5b94f17b47fb3601093e3de408a5bc64c548dfeb828348e1ea283fffa2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.2.0.tgz + version: 17.2.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.5 + created: "2023-10-24T16:16:10.922450356Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: afc404382ebdb6db07df535ac1086336166b5abf4f3e8d12541e9c4951ebc17f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.1.2.tgz + version: 17.1.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.9.0-debian-11-r0 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.4 + created: "2023-10-18T11:36:33.144545531Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 379a27e550c9b598e6da2d1d42cd1569a8c239fede9274d0a88ac7ce85ccb04d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.1.1.tgz + version: 17.1.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r68 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.4 + created: "2023-10-17T07:48:22.746769778Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 6c7cf5b3d997051f85d36537cac72a4bb24d57870f2b72f71bfb0f02cb4616ca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.1.0.tgz + version: 17.1.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r68 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.4 + created: "2023-10-12T15:16:29.690145406Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: aa9746b8ba29211db2cf78414735de8a5de3e9f7670a6f146ffea8bbf53c60e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.0.4.tgz + version: 17.0.4 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r65 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.4-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.4 + created: "2023-10-10T11:22:42.333443597Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 5c23cf53c0d501c43bd1b399bcf49999123ad0d1facd56fbb33ae966fdba59ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.0.3.tgz + version: 17.0.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r65 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.4-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.4 + created: "2023-10-10T02:25:40.914784904Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: ba5815bcd9aaac53db927ecd32cfa2a57b56a4e07f267739b3a65c83ea565812 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.0.2.tgz + version: 17.0.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r65 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.4-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.4 + created: "2023-10-04T20:52:26.021662577Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 0e1a233253b303088c1e04914ff9d933fe19f7245313e5aaa6b3323a381aeb89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.0.1.tgz + version: 17.0.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r57 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.3-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.3 + created: "2023-09-29T10:02:12.109162929Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: c1ed3e689fbaf1fd44aa52b46d691024d18e2b0e1d3c4eea18d69af61112975c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-17.0.0.tgz + version: 17.0.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r57 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.3-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.3 + created: "2023-09-26T17:19:13.996960723Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 32d30c66705778aaccf6aa24985cbe03a8b70773683a176b76c7fa11ed6a1aed + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.1.7.tgz + version: 16.1.7 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r57 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.3-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.3 + created: "2023-09-26T11:54:51.416352354Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 37c06c7eb1768d3df354acbfc0121693352214febd0ca83795c710ea6343e879 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.1.6.tgz + version: 16.1.6 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r42 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.3 + created: "2023-09-15T10:58:33.755267294Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 167ea79e5316f0d2aca6e50f16b3ecc676a9eec7f2964474e760a9ce5582424e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.1.5.tgz + version: 16.1.5 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r42 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.3 + created: "2023-09-12T22:15:01.246134389Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 4cc2c90cc5f5ca4debc3c0142955353f15667750621dbeab2b7e0ad7319a1e10 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.1.4.tgz + version: 16.1.4 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r42 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.2 + created: "2023-09-12T08:44:32.141134368Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 5707982e6fdf4aec7dfb4914c8bbae5192d8686173976aefa969944b9abd4fcf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.1.3.tgz + version: 16.1.3 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r30 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.1-debian-11-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.1 + created: "2023-09-05T13:17:35.617884722Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 94716996d5e7a28665095b0d8766b43c4c1658f2bb5806e35f7568beb5054183 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.1.2.tgz + version: 16.1.2 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r30 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.1-debian-11-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.1 + created: "2023-08-31T16:19:46.210546562Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: e9435e9c402f69412ea43939de0913b00ba47d6dc1304f3422e614575a559b42 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.1.1.tgz + version: 16.1.1 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r22 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.1-debian-11-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.1 + created: "2023-08-28T11:28:25.579582261Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 164160de654478e69537cc3ba2d320b7227ba1cbcf4e781a64fe3d71ef9fcf22 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.1.0.tgz + version: 16.1.0 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r22 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.1-debian-11-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.1 + created: "2023-08-19T22:49:33.247427087Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 2b08123e99821fa74913489ee1c5f7b7b81fcdd8dea11aec892b09d4181a6398 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.0.5.tgz + version: 16.0.5 + - annotations: + category: DeveloperTools + images: | + - name: keycloak-config-cli + image: docker.io/bitnami/keycloak-config-cli:5.8.0-debian-11-r17 + - name: keycloak + image: docker.io/bitnami/keycloak:22.0.1-debian-11-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.1 + created: "2023-08-17T18:20:19.059279414Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 24b48af8059f656ae19e0cf277444523cbe08ced2c114c66489c5eddc81476c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.0.4.tgz + version: 16.0.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.1 + created: "2023-08-04T15:09:08.403805979Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 3a2a5a34e72282a10446e98151272ce83ae45c7693977ac17e0a157ce676bcbd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.0.3.tgz + version: 16.0.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.1 + created: "2023-08-02T23:02:35.047717962Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: bec250f1c3e7f925b8c7e5de36167ea2aa9ab5975f4c327cbb1d3c277bc1ccb1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.0.2.tgz + version: 16.0.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.1 + created: "2023-08-02T21:20:08.074332322Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: e37455db84befd83c2889daae5df4725736336851783d1b7810249abd030d834 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.0.1.tgz + version: 16.0.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 22.0.1 + created: "2023-07-28T10:10:56.977648987Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 28d687f6c9e0f54a7dbd57a8917bcfcb42e6a70e5f4507d40faa6c06c939fc7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-16.0.0.tgz + version: 16.0.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.2 + created: "2023-07-25T20:46:54.651079263Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 59470ac1ac81d10a738f39f92c720afcb14f106883090419cd5ecd311f7175a8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.1.8.tgz + version: 15.1.8 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.2 + created: "2023-07-15T09:45:23.064994364Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 07d21bdabbcbacd7219b6c98028b9482ee0a9200d24036f3f52db595cfa10b22 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.1.7.tgz + version: 15.1.7 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.2 + created: "2023-06-28T11:40:11.397475245Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 0aba3515cc7ea5e3c5cdc17da93a68ce76c23bd1f08000eb3a152e81a51ce380 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.1.6.tgz + version: 15.1.6 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-06-27T07:51:16.169952323Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 38e4e5d607a866aadee6ed1080d22515a5bc9496c05a14178c632f281e922ed2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.1.5.tgz + version: 15.1.5 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-06-20T20:25:09.542818362Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: fc6f30600a601230743df2a7f8d066e9a93ac915a2a12128986828e8e3c24663 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.1.4.tgz + version: 15.1.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-06-06T07:51:55.327333685Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 00e85c58477460689f521f96a483d515f6d0cd4a3adf8fd5bf4359c1916bdd1c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.1.3.tgz + version: 15.1.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-05-21T19:51:15.848129764Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 637cd20e0339f1e5754f702bf3b075437a59024c6d2bb0aee50513f5da46ab43 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.1.2.tgz + version: 15.1.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-05-12T07:52:22.836572616Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: b7444beb50fd3eef5efce2380807c696bbf4b8ca29c8acc9d8d58e8f36c67200 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.1.1.tgz + version: 15.1.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-05-09T15:27:49.01818872Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: dc1749bccb3bdba7f11e2b9bd1ed034d5ac054a979208d3373514c5e71e7e1a0 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.0.5.tgz + version: 15.0.5 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-05-09T08:24:44.536537767Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f7b0d192e017ec8d2b3274ae9b725009641baab7f2954bc1d02344658182eb85 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.0.4.tgz + version: 15.0.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-05-08T16:19:08.338739429Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 1f1222c481f1f6d7c4cbe126e77343d790940c7e658c6e61205175d23db2981c + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.0.3.tgz + version: 15.0.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-05-08T08:29:34.138748438Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 710686ff6eef6adfff4df84495765e9910f24c89474da72b5382f19c42bbc66e + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.0.2.tgz + version: 15.0.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-05-05T15:54:03.826153564Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 5245d45ba114dceba2c53d602d5619994e893b226e5c752334fc0f0387409897 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.0.1.tgz + version: 15.0.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-05-04T07:15:27.296115927Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: ec745da65dbb734502675e6848ea1aa06c97b77f650b25110c3e5f4eb8c7d1dd + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-15.0.0.tgz + version: 15.0.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-05-02T10:56:12.944737523Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 0dd9098b3ee98489fe35efcb7f4b2f36c7a95ab1c3de2b9cc893b7ed85b7864f + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-14.5.0.tgz + version: 14.5.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.1.1 + created: "2023-05-02T08:28:34.993403423Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f936b5daf8e5ed8ff889c13c473ab72eb6733c49e97399af505c64a121aceaff + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-14.4.2.tgz + version: 14.4.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.0.2 + created: "2023-04-30T19:23:35.104015169Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 48b1f5f9b31bafd0f432a7804120962e2ec79d8e8a19dbce346ba0fa89c1a296 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-14.4.1.tgz + version: 14.4.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.0.2 + created: "2023-04-25T10:59:47.017019415Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: c1446a85ed0f73a3f81d40dbc3c74c2b86e845e5492affd946944e5cd11bbd8f + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-14.4.0.tgz + version: 14.4.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.0.2 + created: "2023-04-13T08:30:26.91071622Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 2baa1880546eec6bb0495aff6722d1c40eb186369aa8c06145d1a1570d27195e + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-14.2.0.tgz + version: 14.2.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.0.2 + created: "2023-04-10T11:29:17.110101267Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 676528a496140d34afcd4afbe9cb0b69fb763e66bdd65025ed11abb5cbd47c22 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-14.1.0.tgz + version: 14.1.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 21.0.2 + created: "2023-03-31T19:13:44.906092145Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 6669b1023ad1d7357017acd24734d4e8f76130212cec4c6fdab445ec0a5e9599 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-14.0.0.tgz + version: 14.0.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.5 + created: "2023-03-28T10:09:57.815049866Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 2e5b55b6bd6788630387687e7e17af29360214d0ef8ed600a6b7f82806413a73 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.4.1.tgz + version: 13.4.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.5 + created: "2023-03-23T12:28:54.973869936Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 742d72cc0ed26df55e846d307d85db6540fcafb72f3797cd59994840aa6818e5 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.4.0.tgz + version: 13.4.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.5 + created: "2023-03-10T12:01:20.437076126Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 66c4194177e573aa78b20daf1a1c2ca0820d239b08d6bcc312ea02a0753e5a1e + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.3.0.tgz + version: 13.3.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.5 + created: "2023-03-06T17:23:55.916715774Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: a029c8a7067c630d2c9f75e637f966827a662c56d488b42a733f1726a0a247e7 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.2.0.tgz + version: 13.2.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.5 + created: "2023-03-01T11:19:27.319148593Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f074d73a68dcfe46f410d08baf5909063a0994e7670eb98abb4307464a24f404 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.1.3.tgz + version: 13.1.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.5 + created: "2023-03-01T10:05:34.08593075Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: ebe30e79defda110374e8468241829b445e020b8cab80d527f101411d3f7d259 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.1.2.tgz + version: 13.1.2 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.5 + created: "2023-02-22T18:30:24.986567592Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 653a36882215fd20caf2672954aa3b1b1db83a943d82c129fdf1c9d28096b2fd + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.1.1.tgz + version: 13.1.1 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.3 + created: "2023-02-20T08:56:00.933176719Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: c36bc58b3c5801ce3fe19a7b0c6d98e807fbe261ceee70a8ce7a676c2119925c + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.1.0.tgz + version: 13.1.0 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.3 + created: "2023-02-17T16:48:32.942074483Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: d8b3ffc06ac6fcf89729bc75ea4a5348d15afa4e109e8bfe2aaa5e924057a83f + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.0.6.tgz + version: 13.0.6 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.3 + created: "2023-02-14T10:16:02.179114732Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 5d25987013be9f1f494874b2b798505a6c85a76bae32a422918a0421350028b7 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.0.5.tgz + version: 13.0.5 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.3 + created: "2023-02-04T00:43:57.644438269Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 6504d45a92c2d601c4e0e31a3ff8a9894ff9183a7ab2b2d6182b57ece088f0b6 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.0.4.tgz + version: 13.0.4 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.3 + created: "2023-02-01T02:36:28.066484927Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 1bbe4f7fc34d05059e1a0b88d5467abaf8159e2165beebc36f2413bf678b6099 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.0.3.tgz + version: 13.0.3 + - annotations: + category: DeveloperTools + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 20.0.3 + created: "2023-01-20T14:31:02.594786969Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 20c1cb493bc85dd2a4c250ec9af7135a2d9de086afe6ac06135a0876bb48f1cf + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.0.2.tgz + version: 13.0.2 + - annotations: + category: DeveloperTools + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 20.0.3 + created: "2023-01-12T19:07:12.58130356Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: e23f2b159a5e05f492a24f78e2937b192f3243c02fe765663d207e6551f45516 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.0.1.tgz + version: 13.0.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 20.0.2 + created: "2022-12-20T12:41:22.429725182Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 94b4f7dd1476f5a953d562c54100daa8f8eac987a5f22fae354b13c1d0c32d9e + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-13.0.0.tgz + version: 13.0.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 20.0.1 + created: "2022-12-17T11:27:41.096521948Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: fd7dcf3318df2b081234884fca466bb86d8c656f919ce741550497bf9c160d50 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-12.3.0.tgz + version: 12.3.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-12-06T14:36:04.570348041Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: a99a011c4d56e12fdb5a3d1931e2116faea8a12a699dda64e7bacd3848c864d6 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-12.2.0.tgz + version: 12.2.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-11-25T14:53:22.334948622Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 68e7804bdbd9d2b3cef096812e0edb9970cf1715b5f56ad586bf0a1e39db12d2 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-12.1.5.tgz + version: 12.1.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-11-24T08:17:09.452077955Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 73ae22de2060d04f06c4c13a18cc25d2ef970a39abec33e4aba5ccee14bd94fc + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-12.1.4.tgz + version: 12.1.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-11-22T11:32:25.661346963Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 2290e8a2e8ac05ce2a9dbbbc196f4672c0756bf697761abf5e367c3f3d445bcd + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-12.1.3.tgz + version: 12.1.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-11-14T14:11:42.787739455Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 07aa9b67934651c1290f36a0b000aa8223e69229e5dd6c1648828483183869c3 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-12.1.2.tgz + version: 12.1.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-11-07T13:46:23.040704019Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 4d6336386aa8df952ea905260467a83743eeab8853a62d6c5a4e79d666917b43 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-12.1.1.tgz + version: 12.1.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-11-02T11:02:46.070785319Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: d8a9bfecd323889cf11d13c57e2eca3f1b284c9971f7d7c086aad1125dec3508 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-12.1.0.tgz + version: 12.1.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-10-31T11:58:21.805826723Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 8b3559b9a28f069308e3745ada76ea3a25a6a75f2b589b082d19bccb5fd065b2 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-12.0.1.tgz + version: 12.0.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-10-28T11:40:45.317205102Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: e019dd039e568e332eeabe2997c223ec1a9519f71bb9508c1a934b4c2c6c0928 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-12.0.0.tgz + version: 12.0.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-10-28T11:20:23.845824939Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: a752204ac98b3f2bbd436effe7e57a97f63de6978b647c27d21577b9d0a3f88c + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-11.0.1.tgz + version: 11.0.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-10-27T08:11:54.362711855Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: ab7ec35fd7ca2c40a8835e4d40f0d177c2c88c629774d2a3c3967c2be80050e9 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-11.0.0.tgz + version: 11.0.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-10-26T16:24:34.720497286Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 7cebe8699356f772c26c6e4cd72b07885f1ced673a938b22200657af0e2f982d + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-10.1.8.tgz + version: 10.1.8 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-10-19T17:00:47.45667258Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 02e0e79ffcd92a84221570213419ccdbed4da31f9d995ffc568fd606800ea15a + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-10.1.6.tgz + version: 10.1.6 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.3 + created: "2022-10-12T20:23:51.909146029Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: d947d4836a38af141daf9b4e210cbc3bf62319c6d83939f314a97b0439378bdb + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-10.1.5.tgz + version: 10.1.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.2 + created: "2022-10-05T12:15:25.498636148Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 1fbc098c802d08524f490db0e0e6b64772258fffe8a4e7d56b417c7067ffd7d8 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-10.1.4.tgz + version: 10.1.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.2 + created: "2022-09-21T10:09:13.349009951Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: b3de13e8d222df18cfb84814c94b7378c742d31e990c8fd060341fa669609c5c + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-10.1.2.tgz + version: 10.1.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.1 + created: "2022-09-14T11:28:28.767421148Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 720bb576111c62b6f98ef5de5e91f6ca9796405b09f9d7ece3eba3cfe413cbe0 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-10.1.0.tgz + version: 10.1.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 19.0.1 + created: "2022-09-12T14:12:55.909819095Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: d601c40cd6e23cacfa81ef968a2a6d8859d9c952b7c65b8a85c4d42cc1e06f4c + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-10.0.0.tgz + version: 10.0.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-09-07T19:00:27.349839032Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: a59488edd1184e250928212c963bcf41d711d26deb7fdc5a4e520fc493c70f4a + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.8.1.tgz + version: 9.8.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-09-07T09:05:27.853841645Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 6d805736c504d9df5738d2bddbe3a30c32b3a082e8a0cc7de5c68d0b6b786a93 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.8.0.tgz + version: 9.8.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-09-06T08:50:17.937514411Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 6cdd5b7b38bb8e023f52a916c0bb0fdae45622ffe5374c3523add90b34acd230 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.7.4.tgz + version: 9.7.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-09-02T09:56:23.81898582Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: fab408c72cee6a087012ed25ca50d7de03d283e7b9f9af28560e79b9601c896d + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.7.3.tgz + version: 9.7.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-25T06:46:40.837420004Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 768c4822649b4aa137af61511e8a4fe3acf0c977836c483aff082d3e6eba27d9 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.7.2.tgz + version: 9.7.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-23T23:29:40.838828331Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: b9ce7d968bd6699871ce110c2717f9c0c0e8043037f7bf3d4e4036aab3864f9e + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.7.1.tgz + version: 9.7.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-22T16:23:45.015228354Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 730fe89cabe62701d5063df04fa51fdb1f4a10449675b721b531081284ce78e2 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.7.0.tgz + version: 9.7.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-17T23:53:31.070979229Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: a0cbdc64512da2aa14ad15aa07c89d99a7956f59ef30966c83909b79314a7867 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.6.9.tgz + version: 9.6.9 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-09T02:55:15.438732828Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: af93c03f74d631563a8689e5c5d275ee868a60d5c0b9cbd7e93c56c0a6070fe9 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.6.8.tgz + version: 9.6.8 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-06T17:28:19.65887679Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: e3c7026e362cbed1f0353be1ca6877e2906b1f374d30139947529fa15f7dc78e + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.6.7.tgz + version: 9.6.7 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-05T16:29:52.746523636Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: f44f7ed94a0c1603017479e24140cced9a581e716ffbea8c2d868a0d6597a648 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.6.6.tgz + version: 9.6.6 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-05T11:15:59.574068224Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: c5b4ce197fb349c633dd7237cb7309267f4db70b6651e7b8fa377eeaae4d93be + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.6.5.tgz + version: 9.6.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-04T15:47:48.797923654Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: b8c79281990c6e40f1910b97906c83f1b7cc988fd235ad9d3bbeffbcdaa5d302 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.6.4.tgz + version: 9.6.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-04T07:53:20.634435405Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 7735b8dc733337d5fc58c414c862c656f14015609fcea94256144ff608c23b91 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.6.3.tgz + version: 9.6.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-08-03T08:45:36.91301371Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 31d647e3422c35421921b94c96ca8953ff8e5a363d509441b9e0632cfd9d4a4f + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.6.2.tgz + version: 9.6.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-07-28T14:37:37.609709267Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 4cbe20930ad043cf596d52c3da81a7dd76ed9799683c35b64245741f2087daef + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.6.1.tgz + version: 9.6.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-07-20T14:44:56.530036301Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 8065609e75c5a0cf8d6891af93fe91b5251d290e4b1bce76df83e311f9f66ae0 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.6.0.tgz + version: 9.6.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-07-18T10:57:16.370066399Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 72f109b29cdc6a627000402d110a0f8056e39cad1a6ec64d675fb559f83170fc + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.5.0.tgz + version: 9.5.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-07-18T09:47:06.228115789Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 34b414ad1c4102addf9ac5b42a59b866b364bb4c0e7bb82eb9a9a6b9605294f6 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.4.3.tgz + version: 9.4.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-07-15T10:35:30.886625155Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 24cfa55c130a8ae96268aab8cfe6798e5c6fe531784b59becb2afc4637466d37 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.4.2.tgz + version: 9.4.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-07-12T07:55:04.651912321Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: a9684186d5fe36e813fcdac48a1a5dfb6ff31131535aafdd7e5307b5cb0d9c4c + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.4.1.tgz + version: 9.4.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-07-06T10:57:42.982198437Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 6d865ac13e9073c01dbe2f89edcfdf048bb5f443476467ffadcc1386ade13a7b + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.4.0.tgz + version: 9.4.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-07-06T09:57:13.130155817Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 4adfefee114ee791b44f16268989506bd4f98e4891d761c3d2f1d82524e7713d + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.3.7.tgz + version: 9.3.7 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-07-04T06:27:49.986953564Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 7c5e1686d3c89437cc9426f010e231a28c09fd8602ce836ecf5047514ce351a8 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.3.6.tgz + version: 9.3.6 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-07-01T18:52:00.306751873Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 4fdaab45344c7c778d12c8ccbec27320966ccf2c6508bc41bf0fa62f72c4584a + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.3.5.tgz + version: 9.3.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-06-30T14:28:59.505310459Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: ac9a19f8fac4285f964e73c4cc6869b1c622c355d7aeb543617dba8f9617051f + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.3.4.tgz + version: 9.3.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-06-29T07:23:29.683146511Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: 80856f8d5010a01dacfc734511fa474d366eaa6f61ec879e1d00aadeb8116be3 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.3.3.tgz + version: 9.3.3 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.2 + created: "2022-06-25T09:07:40.376970799Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:5c4195c0e4881a5017e8d60b57ceef776b9a86a6621867a55e07fa6ee4ba5d03 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.3.2.tgz + version: 9.3.2 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.1 + created: "2022-06-25T01:14:49.111498548Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:a2cf5fb104aec4919b668d156d57c6b6181df79a9976ab289cb9c7b23704e860 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.3.1.tgz + version: 9.3.1 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.1 + created: "2022-06-24T07:35:25.812803213Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:eafc3cc2c371682e834c0672b3b8fad8a63384720c7c34db4d36c611846365f9 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.3.0.tgz + version: 9.3.0 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.1 + created: "2022-06-22T13:16:31.637027898Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:4e7f70e5a545b0ac8ca042ca4287daf59fcf0c9d34f4b3c6c269828831a75233 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.2.12.tgz + version: 9.2.12 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.1 + created: "2022-06-17T01:58:22.347197367Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:42b6858e97da96aa8d9ce489da4779c7d747cb73c7149a72c338e5b11b027fe9 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.2.11.tgz + version: 9.2.11 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.0 + created: "2022-06-16T10:57:26.773586308Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:f0b1f1d2c5e0c0c3a01c3a003a61337d8a8d534e0fd8bb5352a45d8c0685193e + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.2.10.tgz + version: 9.2.10 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.0 + created: "2022-06-14T14:05:34.134694654Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:2922163f028bebf431665d693e486dd47533ede1d2f29f00de61513f7bca7b8b + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.2.9.tgz + version: 9.2.9 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.0 + created: "2022-06-13T17:40:31.699356072Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:3635121d3b02459819de1f41c1bdf34f07d935c26df9ba473afda6574e1dec97 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.2.8.tgz + version: 9.2.8 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.0 + created: "2022-06-10T19:43:30.287388443Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:ad8ab0e346eb43f3344e8d14e4b3c64d5d794197d4b9a0f1785fab52bd98a225 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.2.7.tgz + version: 9.2.7 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.0 + created: "2022-06-09T12:32:25.187136602Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:e725a6bfeda2dee8498c4b5bf7fbff907661ab71fc1bd78682109349711ab0d1 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.2.6.tgz + version: 9.2.6 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.0 + created: "2022-06-08T23:03:00.507328455Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:0f1275fb7a7a0f800237d7949f7a0359d92de4370299964833cd0fb162080788 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.2.5.tgz + version: 9.2.5 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.0 + created: "2022-06-08T10:52:00.305167261Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:9bde69f6ae7f35bece5672d7a43d798180c372de90bddee9d6ff216e5e982470 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.2.4.tgz + version: 9.2.4 + - annotations: + category: DeveloperTools + apiVersion: v2 + appVersion: 18.0.0 + created: "2022-06-01T18:37:51.307445393Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Keycloak is a high performance Java-based identity and access management + solution. It lets developers add an authentication layer to their applications + with minimum effort. + digest: sha256:2cd94e52021dc82d96ac4eaf69c4df1b59fb77a71c969607beca0bfb8b4d1b90 + home: https://www.keycloak.org + icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png + keywords: + - keycloak + - access-management + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: keycloak + sources: + - https://github.com/bitnami/bitnami-docker-keycloak + - https://github.com/keycloak/keycloak + urls: + - https://charts.bitnami.com/bitnami/keycloak-9.2.2.tgz + version: 9.2.2 + kiam: + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r37 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-08-07T04:14:30.177515659Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: c7bd666947c3bc8c73e7603a4f2ed8f91764c91b8a1c25ea73dfdacf1756d770 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.12.tgz + version: 2.2.12 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r36 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-07-25T05:21:28.278500977Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: a0701a3769a605091b56d1749909518eaa9ca99fc3a26bf93e2e3d8ced871b14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.11.tgz + version: 2.2.11 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r35 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-07-24T05:40:40.299352051Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: eb2a99f8100ca59f598dfc271a6fb397d696fe065a7dd8025c3b1039666a4408 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.10.tgz + version: 2.2.10 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-07-24T03:02:21.268364722Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 80f018956da8d5c867f5a26884d26853a8055f01dbe2a439fd2c1218fb7c6085 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.9.tgz + version: 2.2.9 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r33 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-07-19T06:54:56.810276911Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: e5e3f197e435b64b826b39335b1ca78cf3e3448348bb12febc6d2a18a8823cd4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.8.tgz + version: 2.2.8 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r33 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-07-04T19:38:00.397692555Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 88d51db713d07c0e36e6aa0153867166ab8df0daae85e7860db3103cf28a10f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.7.tgz + version: 2.2.7 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r32 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-07-03T02:14:06.098683355Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: e75f5aa0beff127d85f2b238264a9c6766a9255451ef007186131041d75567e6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.6.tgz + version: 2.2.6 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-06-18T11:54:39.377999338Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: b107b4b3f2351ed4478cae0ef18278ea454239a140f401aa6865be82504346e4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.5.tgz + version: 2.2.5 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-06-17T13:02:13.800729629Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 51d0c14b570ffdec3cf0a28eb589d9dcc8b449b705ef152d3c8f5cf2514758f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.4.tgz + version: 2.2.4 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-06-06T15:21:04.012253552Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: a2a28da859853e1639561ca3880f1499deab1ef715be1530575ef3a258278f58 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.3.tgz + version: 2.2.3 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-06-05T03:49:02.653228028Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: ead2701d103390924d9208910a6705c56c8226e2a87ced6d1c51ad0fda09bf13 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.2.tgz + version: 2.2.2 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-06-04T09:44:50.607868381Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 1a2bbe83f88f63445c9f064bf535b4b678f481297bbf40cd4ac02901110c00f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-05-29T07:55:11.76271999Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 66b635640a61ec0b59aa6f5e87d2f15d9709102453bc41743100ff48843ad56d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-05-23T14:24:43.635871012Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 4785cefd26c2e7111560ad18a125032dce7a754c217182fbf5457daf8e9a6cd7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-05-21T14:20:56.102843157Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 3c9cce529cfa35933aa53b68fd2bb139dea1491cbb8f3da15f377c2f8cffc772 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-05-18T01:30:44.063735832Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: b9633de94be18311e61c73127607370921e9db68f300ceb2d20dc00ae84230ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.0.5.tgz + version: 2.0.5 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-05-14T05:03:09.359634843Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 4cf89a08042ebce7fb60bc1258eca1b029a93f4a66a4b1159c0272fd9d520bbd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.0.4.tgz + version: 2.0.4 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-05-08T00:11:49.458317355Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 3edfb8b41eb22ec22bcd0e77c2622f8e9abf7e91c45a9819e7dac92603eb3c6f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.0.3.tgz + version: 2.0.3 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-04-05T18:28:23.659327187Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: e363c0fe3344d633821b43b1f183ec841449c5b871167f412b10f6d91c73a130 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.0.2.tgz + version: 2.0.2 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-04-04T14:27:52.39307772Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: bf3789c8745c09359a5c0fa558bd62dec6b04a780402ada67d8b5dcc5442de62 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-03-12T10:27:56.217868149Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 6815159137b74497a5cc108929456a694b841dcfca5e47d6f2b654297d0813c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-03-06T23:08:45.575458914Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 4431a61c817e739ce73c77311a83d023a39d9082cc61cda108b0021b421c196a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.11.1.tgz + version: 1.11.1 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-03-06T09:10:58.077101813Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: f40aebfddae6a0e79475114cb54898ec80188ef8a551b45be6f9aaa202312d97 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.11.0.tgz + version: 1.11.0 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-02-29T11:05:09.993384591Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: f807ae560fb14e94e970a8529a0309dffbfad01e2b39c0b27d8450d170d2cfa2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.10.0.tgz + version: 1.10.0 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-02-22T11:01:07.794278269Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: e4fd96d5edf5e5537c4cc00a1423e706aff5313dd9e0a260c478fb311809d7a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.9.2.tgz + version: 1.9.2 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-02-21T14:58:40.599929595Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 93fb7f8779461dc0f7df54ed37e2627a26a20574bee74ed95e60def7c54600ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.9.1.tgz + version: 1.9.1 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r431 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-02-13T17:06:36.198053286Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: b2ca2b2ce4cecb9ded5cfff72ac70be6c37948cbf44db6af66fd306374df084e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.8.0.tgz + version: 1.8.0 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r431 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-02-07T18:10:31.510135665Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 31d9e984693caa3ab459281f1d422f5ff1fa5322b0cb9fda2e0d1d62b52117cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.7.5.tgz + version: 1.7.5 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r430 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-02-07T11:03:35.387669143Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: c15c112b051b922897d048fb4a306a040b5b55568fb1fe40f6f7ff5bb7bfba68 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.7.4.tgz + version: 1.7.4 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r429 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-02-02T17:11:16.901760102Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 74ce90646d17369f1369ff09dc52fefecff7fd5b2b0fa3693069bd8e9e6d6178 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.7.3.tgz + version: 1.7.3 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r428 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-01-30T23:58:14.850964517Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: bb9e4885285215e8004dbf9bbc6cf15d806d0356d8ebb318a133f4d915915668 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.7.2.tgz + version: 1.7.2 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r425 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-01-26T11:12:52.088312815Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: c3ff97a27fc32c41ba3f8815496ecb033e6384095fa8b8e73e30b5cf9bf5bb96 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.7.1.tgz + version: 1.7.1 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r425 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-01-19T09:29:37.637417283Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: dec2f20175cf0493be09bb2ea33f42d835b28ad8b16638d863443622a5c29cd1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.7.0.tgz + version: 1.7.0 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r425 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-01-18T08:20:55.014614139Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 15bc87823df0341aec1603630fd925e963e9586a8fefc80157a61da7e0271fab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.6.1.tgz + version: 1.6.1 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r425 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-01-16T14:52:38.642042929Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 0bb71ddf5d841d6fde14bea2f674df86864809717171d0e6fd070aa6639a5022 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.6.0.tgz + version: 1.6.0 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r425 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-01-15T08:36:22.003681915Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: df8dde7e4e3f04456f84fcb71b84600dbdd8a42ca7f49c805dc37a44e784031e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.5.2.tgz + version: 1.5.2 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r425 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-01-10T14:25:44.15988926Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 828a8a40f8558f197f737ae0593d25636fd18041e9502b77588805831fdcf327 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.5.1.tgz + version: 1.5.1 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r423 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2024-01-10T10:11:24.178253808Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 6fe518a1155dc324cd8183313b08eaaf04e1d0ec5b726883425798370bc4b910 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.5.0.tgz + version: 1.5.0 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r423 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-12-07T08:42:49.323110599Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 04ad54b222199cc00963317ca86535c8abee00451a172ee890dd78130eff3f7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.10.tgz + version: 1.4.10 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r422 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-11-21T18:21:23.946663887Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 16d76acd85aad45842175c8f42ab37a02ac89426cf93680fb423c66d6426f2de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.9.tgz + version: 1.4.9 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r422 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-11-08T22:11:18.95713392Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: d7e150b0a9906e4e38888a026a14e001b6a89fb194bd62c1f670250d0e6c4892 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.8.tgz + version: 1.4.8 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r421 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-11-08T17:39:40.910945135Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 24bd790b55a6926941453aa47abf48e572f805f29ca7eec46dc08c21ce4c3514 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.7.tgz + version: 1.4.7 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r421 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-10-11T06:36:08.778663458Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: ce484e8520c2394e83d02f34bba272f55cf47009abd01f27b37b31e401e626e4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.6.tgz + version: 1.4.6 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r420 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-10-09T18:32:05.74213419Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 6efcf64110f0c592da97c38d415f969433c40e9a885e6c2f6094a4b711d5ac26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.5.tgz + version: 1.4.5 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r418 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-10-03T23:25:02.117952888Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 5b8e675c248492c11917769b0a35ec443ad67d96fecced9874da7f74a75fbea2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.4.tgz + version: 1.4.4 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r403 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-10-02T08:40:45.143407131Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 1d337dcce26e0f9bbe196dba5e5d43f570fe7071487a233e88216d1f6afdd4b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.3.tgz + version: 1.4.3 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r403 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-09-20T18:53:54.101672834Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 023abd15acbe31ab2112f5e2da336d272917319350338824bd65222c8697bb5f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.2.tgz + version: 1.4.2 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r377 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-09-06T07:50:44.487232897Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 8b7a1481162f964d3537f7b34fa79eb90eadd12d41e0d459490a01bacd67bb34 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.1.tgz + version: 1.4.1 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r377 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-08-24T14:13:59.528348823Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 234117e8a5f77ee6762a0b49eb43b1297a623c3d37f9053d5f3c7897c98148ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.4.0.tgz + version: 1.4.0 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r377 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-08-21T18:42:54.645069807Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 46612b71299ecef60b38d1deb2e9215c0f9a54669f945e4d3361fa9b999f0ecb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.3.9.tgz + version: 1.3.9 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r375 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-08-19T22:15:10.014355096Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 938b38b7d21066e7c1cbf26fb51bd5fd337d462506593797a3526f7b5547eab9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.3.8.tgz + version: 1.3.8 + - annotations: + category: Infrastructure + images: | + - name: kiam + image: docker.io/bitnami/kiam:4.2.0-debian-11-r371 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-08-17T17:01:29.909389346Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: b6a33fd34855a7434cb5fe39ba03528eb2d03c853de213a0451c4e25a53df24a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.3.7.tgz + version: 1.3.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-07-25T14:37:17.966318113Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 69e5a156d10a7ef8fbeeb4ac41bf5c76564b9e7eff73cd661634f8fcefdb922e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.3.6.tgz + version: 1.3.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-07-13T11:32:05.369288287Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 59d2232d570842612676318959cfffd80dc3e86e7044dad61360c0fe4b391372 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.3.5.tgz + version: 1.3.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-06-22T15:01:48.708511516Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: c99551c28e40eaefd73d41154ba69017cb1229395846c797765ecee073cee461 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.3.4.tgz + version: 1.3.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-06-21T10:41:55.287051423Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: bc381c05e1d921e79917b7ad58936d7fa7684a5e813343a75cd3fb37c6c61761 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.3.3.tgz + version: 1.3.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-06-20T15:23:55.843362788Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 98f72ac60c623c49e9bb35233fad473a82f758cbf158dc40dfb32f9d60efdb90 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.3.2.tgz + version: 1.3.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-05-21T15:32:18.707324007Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: cd8338c047d313f062ad272d94dfb3c987c887de7ca648af16c0af7c060ecaeb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.3.1.tgz + version: 1.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-05-09T10:38:12.864308212Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 1228dd29db800db2b7f99ebc3a516066ca3cdf25649625b94cfb505950c03c4c + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.2.2.tgz + version: 1.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-05-01T12:50:37.031875952Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 003fc23fae55a6a9b06ac73402cb1c41c62f683da2bf32bd71ef298ae3da34e0 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.2.1.tgz + version: 1.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-04-04T16:38:56.137551261Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 777bfadd82ca1e0294f79557369f06e61fc86d942caebebbd2ec5c344507e662 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.14.tgz + version: 1.1.14 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-03-22T05:17:49.487458661Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 0234f2f2c3609966c8570e21d1624b47b6bf7b3879eef112615f48431e570e87 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.13.tgz + version: 1.1.13 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-03-01T11:26:21.156916926Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 0e91718f239fab686e82cb73e579f61205e3d19560462392da9918b60335d5d9 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.12.tgz + version: 1.1.12 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-02-17T15:32:05.78482028Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 709f8e3873bef9087daf99c196f7587b92e216edc058ada52d7ad088a397cb0a + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.11.tgz + version: 1.1.11 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-02-05T05:03:13.452191984Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 23334c527161e0cbef10259e7e7838e6997d4e9bd64f6acdf307b1c4d2695015 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.10.tgz + version: 1.1.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-02-02T11:59:18.782806745Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 6fc48213263381e25706403094f54f9f6b8ce583b6fe2bccf9ec979bc37dac66 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.9.tgz + version: 1.1.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-01-06T04:54:23.075862924Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 9685002dbe749af09731653fc09e932c947cd4cfb98266e87dbc44772cd81892 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.7.tgz + version: 1.1.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-12-07T04:48:33.953141393Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: 4cd971a1c5dc87e2d275e103c24fcbc590e5ec7fc18feb4ebd12bda8a0ff8ebe + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.6.tgz + version: 1.1.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-11-07T05:32:58.372224017Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:a5a1ec1e0feaae5227775bf2c4b73a0b42c185834e3b80b797210f4ec9c00314 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.5.tgz + version: 1.1.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-10-08T05:02:05.074045358Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:b9894ae4d027750a50aa2f238443f5150dceb8d38fd279d9fce80064a01399eb + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.4.tgz + version: 1.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-09-20T17:50:42.089179063Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:f6622518e5661f643a8ef4c68aa23d820dcdae825c243f0cf9f83655ff901b55 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.3.tgz + version: 1.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-09-08T05:19:37.504932023Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:48e723a648b94d95ee848c9e992e27a681eaa61110f167a827804a546a2792be + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.2.tgz + version: 1.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-08-23T22:44:43.702640029Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:543d410a01d62fc60239df65b359ddaf53d4b02c00890974e779d71a40b8ea0f + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.1.tgz + version: 1.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-08-22T16:53:09.107300882Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:b7102a8f08884fe15e783c18ca9a63f1dc405124682a320905820b21e063652f + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.1.0.tgz + version: 1.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-08-09T04:41:38.759508125Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:844d62c4c87ac5f31ad3dab8573a76245aa9a84119d00b532a2b79283575ee72 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.0.18.tgz + version: 1.0.18 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-08-04T21:26:17.497502378Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:914f11ec0ae15e0068eac9cf7c19aeee85c353f3d131436af8e7bc001b49c481 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.0.17.tgz + version: 1.0.17 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-08-02T09:46:06.703018918Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:986d41b7db8258bd2fc2aede8ee459ce8e2acb34ab7ff520540a078509df3027 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.0.16.tgz + version: 1.0.16 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-07-30T11:25:46.294733464Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:cc0d0809d47b641818e579fcd6a88f05f89cc9bc13c4ae1fddcdd97a652890bf + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.0.15.tgz + version: 1.0.15 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-07-01T09:41:16.261199349Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:a0ba11d52924d0bdfcde4d4097b9fd4f4ff7df0e97eee440221dd2453597a6af + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/bitnami-docker-kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.0.14.tgz + version: 1.0.14 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-06-10T16:02:38.248089166Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:bbfe5459c3c46e3fb90587bc744fc3ce68342c4bbecf07e2e176df5c499bb633 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/bitnami-docker-kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.0.13.tgz + version: 1.0.13 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-06-08T10:00:26.55697835Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:3b61c7ac9a1c7a208c82493925bb3296ef2dc5448fdb771334ffb7fe41fa6841 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/bitnami-docker-kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.0.12.tgz + version: 1.0.12 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 4.2.0 + created: "2022-06-03T05:02:44.542238166Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kiam is a proxy that captures AWS Metadata API requests. It allows + AWS IAM roles to be set for Kubernetes workloads. + digest: sha256:ab6f45172123543e69787a6e340fe44c2ee82e34bfba5f83cb7b8fd20851b8d5 + home: https://github.com/uswitch/kiam + icon: https://bitnami.com/assets/stacks/kiam/img/kiam-stack-220x234.png + keywords: + - aws + - iam + - security + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kiam + sources: + - https://github.com/bitnami/bitnami-docker-kiam + - https://github.com/uswitch/kiam + urls: + - https://charts.bitnami.com/bitnami/kiam-1.0.11.tgz + version: 1.0.11 + kibana: + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.15.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.15.0 + created: "2024-08-19T11:43:07.932847904Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: c7805a0a45a9d7731c0644fbb72a2dd0ba5ccb0a948b1414f50b07c1698b1a9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.19.tgz + version: 11.2.19 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.15.0-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.15.0 + created: "2024-08-16T08:01:58.806718544Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 4121f7eeb68eb039a34bac8cd82ccd02bc4eb554b14c4bb7aadaf828ec1a31f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.18.tgz + version: 11.2.18 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.15.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.15.0 + created: "2024-08-14T11:21:44.163694497Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 8cfccd8304dfb5f3b6d5ee9283307bd5df4a44662bfcc6d9a7e91b046024fb59 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.17.tgz + version: 11.2.17 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-30T06:14:14.368550184Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 95a8c63d6cba262d47d62014096d6c87de3f6900295bb9a316d3081a52859950 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.16.tgz + version: 11.2.16 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-25T10:25:28.003039229Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: bdb1a74b847e9014d1d6b75c641e95e2f1bac460584e0cacf6d85984a8b10723 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.15.tgz + version: 11.2.15 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.3-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-24T09:17:25.603758446Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 3204c52b6953d51a33efa3c3f8543957630fd7eb81d9ec24bbc800020da691d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.14.tgz + version: 11.2.14 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.3-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-24T04:35:46.646960444Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 23be0120ffaf3b1582e90833bb7f0572cbdfd5b485f04f14a0e46fe1fa8fe7c3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.13.tgz + version: 11.2.13 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-16T13:19:25.286058838Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 74bada5c4d9e91072a33a30eac6f04e90cdc54429c68bdf8c78e17a23923fea4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.12.tgz + version: 11.2.12 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-11T17:08:58.504042957Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 486ea734d878a6f84e55c3b22e024140792ed3b979c7f8c2a0223d74c9332d91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.11.tgz + version: 11.2.11 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.2 + created: "2024-07-04T20:02:09.509851829Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: ce7cf846b569eda34f32a3a4a8090f20e3876d86066436f8ecc8d4bc75dc1e93 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.10.tgz + version: 11.2.10 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-07-03T07:52:58.30353598Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 87f8dd35160189804344d8123a428bee9505eea9785a961a92363c522f3bce47 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.9.tgz + version: 11.2.9 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-06-18T12:14:49.701360082Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: ed9b63ca5ffef282339f2b85ffcf50006fbcccd3a875786b8bcdefa0d66418e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.8.tgz + version: 11.2.8 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-06-17T12:50:11.952654658Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 073a1bd07745f3ac2c31d7e08bed5d13663b9d0e05574c9b085de876eb0d1350 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.7.tgz + version: 11.2.7 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-06-12T20:12:24.32147477Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 34a01f7156dccd431bbeb22067da79836a249b5605a4b16a1991989729b15278 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.6.tgz + version: 11.2.6 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-12T08:44:36.043669741Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 4babbdd2385307164e23fcd29b60bba002680d43f64c07d5a785fa700b098384 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.5.tgz + version: 11.2.5 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-06T21:57:27.531827397Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 1a6ac9f198f70d81b741b7ad4682732b624e005263368c2fb7fb7c8d1da44a91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.4.tgz + version: 11.2.4 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-06T15:44:24.538997364Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 5b98b5d06d9ac47b61e1f4a4c3b1dc1f6a6703d1ee8390cb48b1173d5c07ef5c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.3.tgz + version: 11.2.3 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.14.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-05T20:27:56.040613933Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 1dcb750ce8c01a1b32694b3359a6acc1e2eff2d4b50abdff8681c0426ba63528 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.2.tgz + version: 11.2.2 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-06-04T09:45:17.424250787Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 0918395ec1fd61957896ccb200e8814d925556b19c8a35e0d879d3feda9c854b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.1.tgz + version: 11.2.1 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-06-03T07:40:05.684328726Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 566f8ea39d85ecbf6a5a11ad1ece6ee335d4de9cd11810b916a0bd5ab50d08d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.2.0.tgz + version: 11.2.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-21T14:15:47.070428453Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: d250537c8516d610e5cfd9d372a21e2ea556ac6133218c79c49ead234b2ea5c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.1.0.tgz + version: 11.1.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-20T16:23:05.062038974Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 2c1bec9bda98735565ef38bd25032f12d174168c132e7ae6dd66eb9b49ea8c9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.0.8.tgz + version: 11.0.8 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-16T13:43:20.010805936Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 2a24e02ecb06f0128a6f3e9a1ac11236ba78fe1b3209c150ad1531b5f918ce20 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.0.7.tgz + version: 11.0.7 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.3-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.3 + created: "2024-05-14T05:13:53.46412806Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 217c9426302a4eae151ff0bdcc3ce0832747a9e3d6c529931d9902606724bca0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.0.6.tgz + version: 11.0.6 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.3 + created: "2024-05-03T14:40:53.207969413Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 8fdd6d01aa0b5729d25166ab81c512b6129691b2188321087a744c316e03b519 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.0.5.tgz + version: 11.0.5 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.2 + created: "2024-04-09T00:11:52.413216114Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 5410d882ec936008b5bca042611445f1b985124a50399d171b042ee680b6ed04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.0.4.tgz + version: 11.0.4 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.1 + created: "2024-04-02T18:21:55.781140948Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: e76e411911aff7867640d36e8278875d47cdb2098b860d2dd6a1b7d309b4bcf9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.0.3.tgz + version: 11.0.3 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.0 + created: "2024-04-01T15:50:30.306207587Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 831b5bc87132b1e5894d821d6c84eab140514b2094d0c0a5011d61edd0407826 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.0.2.tgz + version: 11.0.2 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.13.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.0 + created: "2024-03-26T22:23:29.087403347Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: f440d423f15ec3db7c85f31d7affdf5cd551242efa918904d6fde8e6c9e50ed9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.0.1.tgz + version: 11.0.1 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-15T11:08:24.509424018Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: c4988903bff551a7e2a9e5e0f65368a8c284f39aabcd64357b2c087cd9c15979 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-11.0.0.tgz + version: 11.0.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-06T12:44:26.45016845Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 4cc5731d05a0a38f1bbc7d8f89cfac8a511534240eaf06c374dfdba7662dc787 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.13.0.tgz + version: 10.13.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-06T10:31:09.548050533Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: f0869d38a97f48b90e9f987b3186b9ba22c127bde4bc2ad6a334d138629900cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.12.0.tgz + version: 10.12.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-02-22T20:22:20.163605736Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: e0a66f578b7e0fe6b7f2360ce2606b3a2893ac2242efd66dfe8730b676d11f58 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.11.3.tgz + version: 10.11.3 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.1-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-22T14:21:41.639589871Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 3308c79d036ecbacc3e65fdfffa0d6c06bdc72b6bba546d53b24934ac065af45 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.11.2.tgz + version: 10.11.2 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-21T15:34:19.113517524Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: a5df1eeb7e775a42727b629e2067da3a5704b9944c41ca4f6bdfab97fc98e5eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.11.1.tgz + version: 10.11.1 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-15T12:24:54.240051786Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: d2dbf99ce95bea07b94bb375db3efbc3d1a41a0c91369040c4f1666c653b1730 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.10.0.tgz + version: 10.10.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-09T09:43:18.389478948Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 6d110cb2731bde876d8abb4498fe0d4884fa37155c0c5c66b34f7167d2f286a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.9.0.tgz + version: 10.9.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-08T13:36:00.655063381Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 6c3b9e39f20a9dee5d4d26a3fa695e33d6fdd4e0c8df60974c01391920579376 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.8.5.tgz + version: 10.8.5 + - annotations: + category: Analytics + images: | + - o + - s + - '-' + - s + - h + - e + - l + - l + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-07T11:09:25.748405545Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 59246b13e4cdc7ab6eb2f08861351b1a08a7334ab322d6eac276a9be1c30f2f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.8.4.tgz + version: 10.8.4 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-02-03T08:05:26.235517803Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: efe8368151bfe6d0df4133e2ce7df7d288eb738e7e6876776aab62303a13c386 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.8.3.tgz + version: 10.8.3 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-01-30T15:20:09.219431401Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 18c593572ccc2fb2e0593e6b0dad917c2e56bb81df76dae23a6c317a4f6eef75 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.8.2.tgz + version: 10.8.2 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-01-22T13:30:37.146780994Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: b77eba55358091001f1dee9a819b07eb134a61756cffa850f63f0cb611fdb3dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.8.0.tgz + version: 10.8.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.12.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-01-22T10:22:31.79325983Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: ce9e3eee96086bf16d205ea8e7fda5bc6a76facb181ff80bbfcc402da15017e8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.7.2.tgz + version: 10.7.2 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-19T00:30:43.90298212Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: a3ada0604db06b881505b298c7b2192b6c1761d932b18d8686a3871f47ff33c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.7.1.tgz + version: 10.7.1 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-16T14:53:11.465730408Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 57c65ca1ec661062fca3276baa83997cc52d7be0dbe0ea811460e78bd8be8981 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.7.0.tgz + version: 10.7.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-12T14:36:38.025965016Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 87396de826db0fdcf7fb3b783505b70b08f72a2bdcd5f72389544102e5dc664e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.6.9.tgz + version: 10.6.9 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-11T22:20:12.37724806Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 41aae5396c7032b55d9216193db44da8765f9aba444d3d86625ca945a65e1488 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.6.8.tgz + version: 10.6.8 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.11.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.3 + created: "2023-12-19T18:20:03.57949683Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: c63b5b5f581a2d42427e518973fd8746c376033362ceb3b4ae1ffb4bc7e41564 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.6.7.tgz + version: 10.6.7 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.11.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.3 + created: "2023-12-13T05:52:14.738155822Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 311014fbd9fc382533409e6748f7317214c2eb870aa5ca3ec2ce6515d6a5f232 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.6.5.tgz + version: 10.6.5 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.11.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.2 + created: "2023-12-11T08:19:54.169522075Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: d0188be79b172ce1c93e2103e7f0e211e9b5e650382245036a161f363395a8ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.6.4.tgz + version: 10.6.4 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.1 + created: "2023-12-05T12:27:25.796736804Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 85fffbc42b645e84a793fa962329f5491928b3e26b337358da5a0c5ac79567b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.6.3.tgz + version: 10.6.3 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.1 + created: "2023-11-23T19:34:39.616887088Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 3fc8c69e1e458b13b9b60a05db8a6798dbe2198286cfe7a6e27cfa7e2b2089b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.6.2.tgz + version: 10.6.2 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.10.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.4 + created: "2023-11-08T16:32:19.294187523Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: db8dab8a30332da8a683abff1b97cc87b650c278d18546aabc03ecc1cb8c10ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.6.1.tgz + version: 10.6.1 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.10.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.4 + created: "2023-10-31T13:10:00.964719322Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 9ff00b80f2bbb4dd33402d76c9324e84b1ea7e97f095150da65a2060aafdf332 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.6.0.tgz + version: 10.6.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.10.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.4 + created: "2023-10-19T16:28:04.051592369Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: beafec52058c06c2eb5c88ca4f4602f4f86b01aa80301bb889ff26f5715b26dc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.5.10.tgz + version: 10.5.10 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.10.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.3 + created: "2023-10-12T15:18:07.109082274Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: d145d05e1a318233f9b07717d1b2ea46ce92bcf45e54f47b93ee3709df574b01 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.5.9.tgz + version: 10.5.9 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.10.3-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.3 + created: "2023-10-12T12:04:20.523002085Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 71d5ec83db343d58749939c23284283900440a4670e0892783dc85df321d0397 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.5.8.tgz + version: 10.5.8 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.10.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.3 + created: "2023-10-11T07:45:16.315618693Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 8ec1987306d66ea3d0ba5dd190107979d7e466bc4ab4e1c3a0ac2ac5e57b793e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.5.7.tgz + version: 10.5.7 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.10.2-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.2 + created: "2023-10-09T23:44:27.350573097Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 6a209e4f50487252a746bade9ba791ba6679b0b679f0abca5055a05649326152 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.5.6.tgz + version: 10.5.6 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.10.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.2 + created: "2023-09-22T07:23:06.144868238Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 2aa1b3aebed506b67b9bb91dff3cdf7a13341eccdc3b6179fd9ecef5b9700f3b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.5.5.tgz + version: 10.5.5 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.10.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.1 + created: "2023-09-18T23:33:12.192781008Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 004e512dec34ef670c8acf7c2212aa1413b2812fd3c1b10180e124930566579e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.5.4.tgz + version: 10.5.4 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.9.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.2 + created: "2023-09-08T14:45:42.571983843Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 42d818164ba2f74b777b0a1956f50195cb5f01dc74b174b70f0e4951a186f0d5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.5.2.tgz + version: 10.5.2 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.9.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.2 + created: "2023-09-07T05:03:45.24529237Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 950629939489cfc48ffc78f808d5c3c9f140f3e658316cbeea9d7b737e83bfd7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.5.1.tgz + version: 10.5.1 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.9.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-08-23T10:26:59.562643753Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: bbacbefac0d9d31696fb18970ecb9808c7c61d2dfe41656e09b3042a81a17c44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.5.0.tgz + version: 10.5.0 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.9.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-08-21T14:52:04.429198918Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 73bb5f22d851f45e61473f978f6daeb862d93ee0b8e1f262cf2eafa99e96b19c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.4.10.tgz + version: 10.4.10 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.9.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-08-21T10:55:23.891719919Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: ae514d000165356a678915bbb2f8c26ad057579515eb0cc80f1427efb14e1955 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.4.9.tgz + version: 10.4.9 + - annotations: + category: Analytics + images: | + - name: kibana + image: docker.io/bitnami/kibana:8.9.0-debian-11-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.0 + created: "2023-08-04T12:23:33.513449327Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 103b500df2105cd09527ad5c919d8ccedd51dc63e65557122aa65232f10d32e1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.4.8.tgz + version: 10.4.8 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.0 + created: "2023-08-02T10:16:22.97981944Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: e1d471882a9280aae9fc2dcc13df09d95d861f53ce6ad2311c537de2a14707ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.4.7.tgz + version: 10.4.7 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.2 + created: "2023-07-25T20:51:12.982616251Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 1cee8df14cc384168e0b723d5bd732fee33583e6bcc44c13054bd722a0410a03 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.4.6.tgz + version: 10.4.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.2 + created: "2023-07-15T10:08:11.034168367Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 98003b9b712b03b1fb771d82a5284cb84741b9dd660d46ba4673c9646f9ba33d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.4.5.tgz + version: 10.4.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.2 + created: "2023-07-01T11:26:46.67756098Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: f6f5c066dba04311def4ea98128ada178dcef4110604a3d5a9e5dcabf2c69e3a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.4.4.tgz + version: 10.4.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.1 + created: "2023-06-08T16:25:27.527884738Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: da0819048f609d30c702fe8f5bb337c8892240aba90a109156d7bea10fc778d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.4.3.tgz + version: 10.4.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.0 + created: "2023-06-06T08:42:38.171592048Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 8c22341f0e541764be48037762ad1c8be4e40bea3857003c43c5a5c952952613 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.4.2.tgz + version: 10.4.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-22T07:32:00.703362265Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 7872a07e1fee52e363306e32a500364beaec05987a7ccd4b4d7661c3e86e5cbc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.4.1.tgz + version: 10.4.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-09T12:52:05.320310607Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: c5453327b87c5699e486595224359b59d2b82a4280c201d015840bab7b9bd448 + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.3.3.tgz + version: 10.3.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-03T14:20:32.113835695Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 605c2a189c6f0f082fcf1cff8c3f69d238cc9ab235e6e44812c2205792dc76bb + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.3.2.tgz + version: 10.3.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.0 + created: "2023-05-02T09:08:19.310353826Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 21f4c67137d3b3a566d4ce537c326511937c4421c4310445b9e72b44b7ee0708 + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.3.1.tgz + version: 10.3.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.0 + created: "2023-04-03T12:02:09.107522341Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: f2a1a62af91374d45f2d5e4f5e02b9389af566ec13e8ff935dc9e67b7f210c5f + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.18.tgz + version: 10.2.18 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-03-22T09:40:32.240803093Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: aa6c684e97ecd609a065ded1e8c7d769d78e6c23d1283aca5278d69316250dcd + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.17.tgz + version: 10.2.17 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-03-01T11:44:24.252658128Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 70fd976537ed64faef69e4c0231be0f8b8a93e52a09d56653e1fa13db303e6d1 + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.16.tgz + version: 10.2.16 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-02-23T08:50:17.716148375Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: c5ff3ab9c24838565d6d1b196350fcb62ccd48170c01322ee1495129f6bfcdea + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.15.tgz + version: 10.2.15 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.1 + created: "2023-02-01T08:09:33.147988853Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: a1de43714a44451f84aa2260eb8e2a9b8afbee2695d640c702666526c6ebe1a4 + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.14.tgz + version: 10.2.14 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.1 + created: "2023-01-27T08:33:18.124071562Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 806f6888711b0ce7368a70f9a036afc4ff23895f17b1a81b8a5dc261325c2ac8 + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.13.tgz + version: 10.2.13 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.6.0 + created: "2023-01-11T08:49:22.986116539Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: d0b2c658fa9b2b5a98648806f73ec0b26a466a5a1e9e5d94a76dda6d803693ee + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.12.tgz + version: 10.2.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.3 + created: "2023-01-09T07:40:49.648369432Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 41030b4f785909ddaa7531b0bd06c739947c349463389c69983305c679e4fc98 + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.11.tgz + version: 10.2.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.3 + created: "2022-12-12T10:26:52.161578581Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 1c43d948cbb0f8746dff50e3463736bf3acec5df69f2b93ce3cf96435a841fe1 + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.10.tgz + version: 10.2.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.2 + created: "2022-11-23T09:05:04.531372194Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: a5343bc669e78d2583ec4740b4da42805d62f0d6983c7d562955210bbdaf01d7 + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.9.tgz + version: 10.2.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.1 + created: "2022-11-16T12:24:32.954826728Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 0ff23ca17f5c53ddff2caac3bc72c2adf610b0ea5daf7c404949009b525b6709 + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.8.tgz + version: 10.2.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.5.0 + created: "2022-11-09T12:30:27.620113048Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 451340b48f1b4aff2ce6ff8df63ef7a9fdacf8443914aac1e119f56f7a9887bd + home: https://github.com/bitnami/charts/tree/main/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.7.tgz + version: 10.2.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.3 + created: "2022-10-11T17:21:28.797919753Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 0ad870892d91547c9eaf8745338e7c85872b4cd5d54116a6f2b0e02ff80ef454 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.6.tgz + version: 10.2.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.2 + created: "2022-09-26T17:25:35.383400199Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 30f8c844a7611716549bbd36b31525f3068480883e33808e8cf72152d72ea744 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.5.tgz + version: 10.2.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.1 + created: "2022-09-21T10:59:01.804908573Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: cb1a881459969fc8a6066e2e33804238ebcbbb2da9a147d5667b9cbd4dbf984a + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.4.tgz + version: 10.2.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.1 + created: "2022-09-20T13:28:45.086214201Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: fae439cdaebbe92a9ea54e21c5cbada5ba90075a36f3ec55e3f5b93a6a7c7e7c + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.3.tgz + version: 10.2.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.4.1 + created: "2022-09-02T08:26:55.758799514Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: afea8d01a3cdc53229466c6c6ec4ee08c698493a0daa1184b5740e440e09d123 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.2.tgz + version: 10.2.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-23T22:00:49.466231817Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 821926059b4c156c1a50670a081ab4e4876864799b398b31b44e9f42060abb93 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.1.tgz + version: 10.2.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-22T13:30:21.167693193Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: eddc6ca87e346e63ef427f0efb1824b5a0131b28579def8df75e4ed57a81da77 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.2.0.tgz + version: 10.2.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-09T08:16:33.17739536Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 7a50a7e7a7e6321cca9623e83debbb10bd814805adf4f831c76c3c8d64623bcb + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.1.20.tgz + version: 10.1.20 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-04T17:09:20.717476218Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 02b729314dba23a530a5e1a9b6aec42aab8c30458c04ed6bdd6007bbedb30973 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.1.19.tgz + version: 10.1.19 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-03T08:55:14.380409311Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 7025ee4906f6e9c0c27db4166055fdc4a4264b1131ae7438b9f5948f73cfc881 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.1.18.tgz + version: 10.1.18 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-07-29T04:37:10.895275687Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: dc20b028810bb89294e84a7ed48ba629eed07c088b43b5a7b9e757c5fcddb3a1 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.1.17.tgz + version: 10.1.17 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.2 + created: "2022-07-08T15:59:15.991157604Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 3fb872db06af9e5f63dc34c21395b14e99ec37ea12425d3fec3e143057dfbe55 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/bitnami-docker-kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.1.16.tgz + version: 10.1.16 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.3.1 + created: "2022-07-08T07:12:53.431900474Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: c8c6ed867f36176392eef6dda23db88b05bfcef53e50f4de48affe25806a6427 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/bitnami-docker-kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.1.15.tgz + version: 10.1.15 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.3 + created: "2022-07-06T06:42:52.207757084Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 3fe141ab4bd0c4b790bbd4e576f5cf84f363f336909678e8698da192f9c69a03 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/bitnami-docker-kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.1.14.tgz + version: 10.1.14 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.3 + created: "2022-06-15T01:27:58.957716525Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 6283299b0cb569f7cb4eb33f669695f4bdca1ff1372a4e38ea6158ef15d1cf60 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/bitnami-docker-kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.1.12.tgz + version: 10.1.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-13T09:56:36.318004849Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: 18e0647c536e4cd4b236e20027cf3422c07c37f70505c84f9e4e5008c6a39a88 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/bitnami-docker-kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.1.11.tgz + version: 10.1.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-03T03:18:37.998955686Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kibana is an open source, browser based analytics and search dashboard + for Elasticsearch. Kibana strives to be easy to get started with, while also + being flexible and powerful. + digest: sha256:212f2bfe136059636d8392c7db9048006fdb0375fe1dd026eec538bed45ddfa3 + home: https://github.com/bitnami/charts/tree/master/bitnami/kibana + icon: https://bitnami.com/assets/stacks/kibana/img/kibana-stack-220x234.png + keywords: + - kibana + - analytics + - monitoring + - metrics + - logs + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kibana + sources: + - https://github.com/bitnami/bitnami-docker-kibana + - https://www.elastic.co/products/kibana + urls: + - https://charts.bitnami.com/bitnami/kibana-10.1.9.tgz + version: 10.1.9 + kong: + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.1-debian-12-r6 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.2.3-debian-12-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-25T11:02:31.236312231Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: c61a12705aaf7ef2b714ac06d9c75e75fef7601b952661eaf41501c213907e3c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.10.tgz + version: 12.2.10 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.1-debian-12-r5 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.2.2-debian-12-r3 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-24T21:07:33.317345229Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 16f99dd964589811ebd8920a23adf6478aae1891fec9de464bc6874b86c80c53 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.9.tgz + version: 12.2.9 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.1-debian-12-r4 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.2.2-debian-12-r2 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-23T15:01:53.273033711Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: f818c310a94f2ba04957ccaabc827f29bb73196118bfb4ab716dd6be04b96c67 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.8.tgz + version: 12.2.8 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.1-debian-12-r1 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.2.2-debian-12-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-18T11:13:14.717674911Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 674481b54338c04519e091d56cb36ae6eef47768a125754185430e3109c28158 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.7.tgz + version: 12.2.7 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.1-debian-12-r1 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.2.2-debian-12-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-07-03T07:46:15.53421629Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: fdc251503b9821b46decadbefcf542fb2b3d12948bba95bb8760cf8bf917877f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.6.tgz + version: 12.2.6 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.1-debian-12-r0 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.2.0-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.1 + created: "2024-06-21T12:17:49.215409771Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 748dc24a6b9117ec6d5491178d517c3e75f7a1195fa471474648bafddaeb16b3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.5.tgz + version: 12.2.5 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.0-debian-12-r2 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.2.0-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-19T22:18:44.646415815Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: bc16058ead80005015d8eefb266335bfac1b270ab59d40fd19fd71647257a427 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.4.tgz + version: 12.2.4 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.0-debian-12-r1 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.2.0-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-18T12:17:44.813610222Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 9d594c1660c367d42ad291e9a09126ba4320afe519f1b82b6bca163897c62942 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.3.tgz + version: 12.2.3 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.0-debian-12-r1 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.2.0-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-17T13:18:48.079342383Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: c4ff8cedfc0e778647f4447da21ff4ab28ce866b68e4fa09f8223ffdc7db5203 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.2.tgz + version: 12.2.2 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.0-debian-12-r1 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.5-debian-12-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-06T15:50:30.882296409Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 0937f7186631d069defa160106e5f4ab8aea56deca8568583d91ea1cd3b2bc1a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.1.tgz + version: 12.2.1 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.0-debian-12-r1 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.5-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-06T08:22:07.144168855Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 56cca140b6c514d2d73d57b99f5a16ceb363a91d84cd5fbebb5efd9cb47adb74 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.2.0.tgz + version: 12.2.0 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.0-debian-12-r1 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.5-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-06-05T09:45:17.431424426Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 4b3dbe093fdd9bbb56cd336d15a135e4d64f00bbe79b20d94d6edf4f0dcace48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.1.4.tgz + version: 12.1.4 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.0-debian-12-r1 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.5-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-31T21:38:03.447238793Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 74a520ad4fe8a1f1235533b5c76d9b39775f4d30d60e93a5525772dbc0e5a62d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.1.3.tgz + version: 12.1.3 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.7.0-debian-12-r0 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.5-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.7.0 + created: "2024-05-28T18:14:26.767495931Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 10a610fde900567a86d35a3a2135acf51fb94fd07d16cb8d1af335015a99f107 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.1.2.tgz + version: 12.1.2 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r24 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.5-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-05-28T11:31:11.020636503Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 652663791971fa1d2185b611f52f7e0fcad979a0f751df837f06db1abbc93431 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.1.1.tgz + version: 12.1.1 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r23 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.5-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-05-21T12:55:39.904992086Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: bd606960893550051083567d714b007335b30ae800173d528eb3f436b8e0d983 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.1.0.tgz + version: 12.1.0 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r23 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.5-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-05-21T06:51:27.168333975Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 3305974e953ae5b5123625cc7c57a069548e9bd6c474eb71ae29fbef89bdc842 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.12.tgz + version: 12.0.12 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r23 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.5-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-05-18T01:46:26.559217609Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 1c5a52c8ddd6aa5b5c39c8528c0b5ff1f89567197f5191c746cecb9c49a76a24 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.11.tgz + version: 12.0.11 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r23 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.4-debian-12-r4 + - name: postgresql + image: docker.io/bitnami/postgresql:14.12.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-05-14T05:17:16.429141268Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 171472a61487bde874e278cad7efe77d7fbbd91b6b81e1c80ef08883a4daffac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.10.tgz + version: 12.0.10 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r22 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.4-debian-12-r3 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-05-09T11:53:17.849855347Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 30f2a8809bab0b68e3826550ab5727309ba947b76b9b6c1991f72d4841f21f6a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.9.tgz + version: 12.0.9 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r19 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.4-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-05-02T10:17:30.491540139Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 2f5a6835fe3abfa9c9755e81cc886f41e4a648f339aa5e5cee837555519d4cf4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.8.tgz + version: 12.0.8 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r18 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.3-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-04-23T12:48:47.115716938Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 598a50a5496a56b03ffc4084b3203ae01cf6ac4c3cfe58ec4d086652a43ed984 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.7.tgz + version: 12.0.7 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r17 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.3-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-04-23T08:58:09.255983966Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 511217d7a3b8ca0633e731738d0e8c61a094398226f0d3b36b83f4e382be7e0f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.5.tgz + version: 12.0.5 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r16 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.3-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-04-17T16:59:33.822321007Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: c63621c0e82f806a62027b5cdd654f346b401c757d7ee3386f90eabebe3c8db1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.4.tgz + version: 12.0.4 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r15 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.3-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-04-17T16:55:35.911716725Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 34e3021566689936beb65175fdec9622b0b4595b44c74e0e26d702780e78bedb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.3.tgz + version: 12.0.3 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r13 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.2-debian-12-r2 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-04-05T14:59:01.000028485Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 7012b83690c1b4093b199ede5bc0f128bd0a570a985810555a7dd6ea3597c6cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.2.tgz + version: 12.0.2 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r12 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.2-debian-12-r2 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-04-04T22:47:56.84827423Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: eb392038c1ab5d682e56f5f5c3b98af4572c8fe2a71eda50699aabd55e16cbf4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.1.tgz + version: 12.0.1 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r8 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.2-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-03-27T12:43:49.966166859Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 008a2a5837750677466f76c984e2aac60976feadc26b0bbd264788a97b1a2ad9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-12.0.0.tgz + version: 12.0.0 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r8 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.2-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-03-26T13:42:29.174931753Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 88a30d1f5ac9ad1f6eec15deaec9f66ab190b82233e88ab97804f1b91934383f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-11.0.7.tgz + version: 11.0.7 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r7 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.2-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-03-20T12:11:15.608271796Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: fd5b470aabdc30601e92566c6f4fe77269056b6590cd6b5fe1f8bab8cf85dfa8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-11.0.6.tgz + version: 11.0.6 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r6 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.2-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-03-20T04:42:14.912957814Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 527802f673b457e7e36b58812251bc5c4eb985272ea3feceedc552b18e1b6c02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-11.0.5.tgz + version: 11.0.5 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r5 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.2-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-03-18T13:06:05.292089305Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 61c2e2a452af364cec7287bf4a4f07b3aabccd0ab498e5cb4fbac148eff185d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-11.0.4.tgz + version: 11.0.4 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r4 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.2-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-03-13T23:00:11.790778225Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 2279f4868e861d113915cdab144a357977894e9e69efcc16d492c735546e8f5c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-11.0.3.tgz + version: 11.0.3 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r3 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.2-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-03-13T22:29:38.032588533Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: e7a2e2ad4f7e9a47c8b1528256bc4420d65e3968c428754326f9f7704ef0d1b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-11.0.2.tgz + version: 11.0.2 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r2 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.1-debian-12-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-03-08T09:04:21.052378088Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: eebb2a3be323c4e75a437fc1e337ba8049ce8428c977efa5834ff7efe1058e9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-11.0.1.tgz + version: 11.0.1 + - annotations: + category: Infrastructure + images: | + - name: kong + image: docker.io/bitnami/kong:3.6.1-debian-12-r1 + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.1.1-debian-12-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.11.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.6.1 + created: "2024-03-07T20:48:51.510346535Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: e704ec7048d534b99909e524ad726ef0e987804621ef8fb068a84896f4913454 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-11.0.0.tgz + version: 11.0.0 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.1-debian-11-r1 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2024-03-06T09:13:04.122864551Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 0731b9d3f97a04fc51d2b8ade8a0510812b3af38978a756e6b04f440ef6b2f9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.8.0.tgz + version: 10.8.0 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.1-debian-11-r1 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2024-02-16T09:51:40.223014105Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: b341c9ad7f9aea309a6ef5a896ea4edac42b59640eca4ab9126d4a6396c1c12f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.6.0.tgz + version: 10.6.0 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.1-debian-11-r1 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2024-02-07T11:13:56.880428554Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: c6bb0e24ba98a3eb5e258ff69d8a4d817aec041d51526679d29afa7e52c144c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.5.0.tgz + version: 10.5.0 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.1-debian-11-r1 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2024-01-31T12:33:47.171193013Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: e25e3bee82dbaedf0bbae6d2f945e20f2c53679e7a6fdac01202d75039b352e9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.4.2.tgz + version: 10.4.2 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.1-debian-11-r1 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2024-01-19T11:00:49.194484441Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: a97b2f38c82337fb4fe04b7aa4155665940d8095885131252b8b5af59c9c03f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.4.0.tgz + version: 10.4.0 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.1-debian-11-r1 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2024-01-18T16:06:29.727833371Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: ffeaf1b691f25e9bad75b01ca9d6d478551e23eca41bf3fc9e3d4f4ce88809f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.3.1.tgz + version: 10.3.1 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.1-debian-11-r1 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2024-01-16T09:42:00.292479607Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: e9408f03fc85719dcbb024a5d6cc6a5fa321a108dc3d6bce6deba3a9ea8bacea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.3.0.tgz + version: 10.3.0 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.1-debian-11-r1 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2023-12-21T17:39:46.889361516Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: cfa54156483063a6d33615cdd4d1cbe56e6ada39d8b84a824a1bddf955143d90 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.2.0.tgz + version: 10.2.0 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.1-debian-11-r1 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r1 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2023-12-21T09:05:19.734914716Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 8a0465285e2e6f2f85ce8283e7af419d8f4e09ac0e9b485976dc6fa614fbd8a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.1.4.tgz + version: 10.1.4 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.0-debian-11-r0 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2023-11-22T02:44:35.296835571Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 08e8072980f96865a1390d0a55912478f58a32f366ed63d4b04af1e2d3c8308f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.1.3.tgz + version: 10.1.3 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:3.0.0-debian-11-r0 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.10.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2023-11-17T12:55:32.996707424Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 345e738d07f47fcd9c4aa761be622cc2db237df9b97e63ba63eef7ae6cf6fb1d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.1.2.tgz + version: 10.1.2 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.12.0-debian-11-r10 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2023-11-08T16:34:03.241734053Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 0d90110efe1c6fbad51ef52b210e5ead9613fba215b8b582f2cc1e24cc047fd7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.1.1.tgz + version: 10.1.1 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.12.0-debian-11-r10 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r56 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2023-11-06T13:23:18.529347192Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 267abd3d5d905b54d0d13e130faf2453bb9446fdbd9639b4d8c41b4aca26cf1d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.1.0.tgz + version: 10.1.0 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.12.0-debian-11-r10 + - name: kong + image: docker.io/bitnami/kong:3.4.2-debian-11-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r56 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.2 + created: "2023-10-12T15:51:28.465208628Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 14162728941385bbcd9584c196781e68e60639730bf0c0a82183159a9675f68c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.0.2.tgz + version: 10.0.2 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.12.0-debian-11-r7 + - name: kong + image: docker.io/bitnami/kong:3.4.1-debian-11-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r50 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.1 + created: "2023-10-04T01:27:42.999095572Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: c6bae68ae513ea7c2c9bd4bfed99b188e07277c8c1410217637699b2ae3e5a12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.0.1.tgz + version: 10.0.1 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.12.0-debian-11-r0 + - name: kong + image: docker.io/bitnami/kong:3.4.0-debian-11-r39 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-09-29T11:26:31.549202963Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: fe7ab2c036ba3f3dd2e586d727aa34a8e1259de9709a3b513da27ba0c0424644 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-10.0.0.tgz + version: 10.0.0 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.12.0-debian-11-r0 + - name: kong + image: docker.io/bitnami/kong:3.4.0-debian-11-r39 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-09-26T15:42:16.017065777Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 8d29858425e6b576693935ef814833214d6b1e427dd28937b6ed22e28ff825d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.5.4.tgz + version: 9.5.4 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.11.1-debian-11-r17 + - name: kong + image: docker.io/bitnami/kong:3.4.0-debian-11-r34 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-09-18T21:06:56.60630924Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: f8c90f39aa1e91670f84de5518c4a176112d6db2ab1644ed3f27c4d65ad13443 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.5.3.tgz + version: 9.5.3 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.11.1-debian-11-r5 + - name: kong + image: docker.io/bitnami/kong:3.4.0-debian-11-r22 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-09-07T07:42:29.141250808Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 5936989da3e2c27379a2db900304bab9795255cc6f58c8bd8b41a3df785639db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.5.2.tgz + version: 9.5.2 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.11.0-debian-11-r9 + - name: kong + image: docker.io/bitnami/kong:3.4.0-debian-11-r4 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-09-07T07:12:56.445896546Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: b8e3604720683d118fb2c5351dd2f28b01db2cf392ee0082d44314886fc864a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.5.1.tgz + version: 9.5.1 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.11.0-debian-11-r9 + - name: kong + image: docker.io/bitnami/kong:3.4.0-debian-11-r4 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-08-25T11:50:17.7684812Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 06dd100c206f5c33dcdadc8bc25fc482b94a0f87ef70df5581b63143ebf5d813 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.5.0.tgz + version: 9.5.0 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.11.0-debian-11-r9 + - name: kong + image: docker.io/bitnami/kong:3.4.0-debian-11-r4 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-08-19T22:58:36.811878996Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 18c6bc2b2a230b6c87ea72f070f42c808ce4ccf672e258c69a299c97fe51d4bf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.4.6.tgz + version: 9.4.6 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.11.0-debian-11-r5 + - name: kong + image: docker.io/bitnami/kong:3.4.0-debian-11-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-08-17T17:13:35.241519711Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 30f96390502ded4c32ea2e3f27d93cb43a82c201984faeaeaacf06532fdf1abe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.4.5.tgz + version: 9.4.5 + - annotations: + category: Infrastructure + images: | + - name: kong-ingress-controller + image: docker.io/bitnami/kong-ingress-controller:2.11.0-debian-11-r5 + - name: kong + image: docker.io/bitnami/kong:3.4.0-debian-11-r0 + - name: postgresql + image: docker.io/bitnami/postgresql:14.9.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.4.0 + created: "2023-08-16T12:03:05.02876046Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 64f2b6953a37e0b9044cf9b0495256fed893929e4d547433c1f0e8fa975a665b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.4.4.tgz + version: 9.4.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.1 + created: "2023-08-08T15:01:03.97996538Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 5cd30566f1becfa7afb24822cacb10795a8e7e2ebd41b6980dc5fece69cdf5b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.4.3.tgz + version: 9.4.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.1 + created: "2023-07-15T10:02:10.444398766Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 82d1c204b41714a2697547da066c6386ade78936f2f73f89cd90484ca0f7b410 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.4.2.tgz + version: 9.4.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.1 + created: "2023-07-12T00:37:37.325826771Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: ebf9b570f6ac92d9e78609d2f53503745adb1d80ed4d4993c054362c5f2a6b11 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.4.1.tgz + version: 9.4.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.0 + created: "2023-07-10T19:32:12.69917037Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: e2cc2eb6220321350c8c48bc3a565a0424e1c3b6c3854dd41a706d7427fd3332 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.4.0.tgz + version: 9.4.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.0 + created: "2023-05-21T15:57:56.362152366Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: e4a13f5d660e03dae8611435b9dc19036001e3d22478ed7a7e84a5a09c26ad5b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.3.3.tgz + version: 9.3.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.3.0 + created: "2023-05-18T20:03:50.297186059Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 72fa2c11ef80b79425b37a6516edd0c78890cd8c44385febfb037c9e7fc3139c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.3.2.tgz + version: 9.3.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2023-05-11T08:34:00.94688719Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: f10663aab09756d7d2b2cc8426debf1f0e849b4acc805daa92666def89b373c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kong + urls: + - https://charts.bitnami.com/bitnami/kong-9.3.1.tgz + version: 9.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2023-05-09T12:56:28.47812394Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 98efbbf8447b7fd81eac4050089d4ffe2b556a6e5d927008eafabeeef80efbc5 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.2.2.tgz + version: 9.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2023-04-29T11:31:39.563842013Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 2eaabcb8d4e97606346c117b1bf8912885ee8a211c67aa7109234889c0f0bac9 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.2.1.tgz + version: 9.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2023-04-01T13:28:31.318300704Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: ce17493f3c01f2f078ccf787c418815aaf1f7ef0f1d52965cd70932254cbccfe + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.1.8.tgz + version: 9.1.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.2 + created: "2023-03-22T05:27:30.616452626Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: e1606977e302f2fb59eb31da4a05af1878a69ac9e46df6be29b7ee4c1b3c69b4 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.1.7.tgz + version: 9.1.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.1 + created: "2023-03-01T23:00:24.764301886Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 89ea62d46687e19c76d416ea6ed7447836c63aa234a26a03ec1f3ea6b8cc039a + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.1.6.tgz + version: 9.1.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.1 + created: "2023-03-01T12:24:48.050922487Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 9aac18afe12e0beaed1838b13249646a2de4a98ec8ac8a1846e4881238ad1345 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.1.5.tgz + version: 9.1.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.0 + created: "2023-03-01T11:04:59.417664853Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 60bc57c5cb995837b1200a97d21fd26a963268c5c1758e0e122cd7b8f7da2e80 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.1.4.tgz + version: 9.1.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.2.0 + created: "2023-02-24T20:14:49.96093866Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: ff93f0e616bdaa3e365a01a7abbaaebed102c27751aa1209ff24a49161b2aa09 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.1.3.tgz + version: 9.1.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-02-17T16:05:15.787094269Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 91d988f84bc9f78fcdde8a2fae00b064287febbd8e897a3c96cc1d1c9ee1faf8 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.1.2.tgz + version: 9.1.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-02-10T12:23:50.708147566Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: bd32a4ae93a952f29c0185ff5f3bf82ed924fb80b097e575e12cd2362fa8fa37 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.1.1.tgz + version: 9.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-02-10T10:42:18.424873711Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 1bd5057392d4c701136b85a7bad17c73cfe2945fe8e383a8ab949be42ef57eb2 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.1.0.tgz + version: 9.1.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-01-31T08:45:01.695832098Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 3e4bc7eb6ee2ccd46726d689e09bd30f3cac0d4af2e8b0b12fce9a045e1796dd + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.0.4.tgz + version: 9.0.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-01-27T16:56:03.94935601Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 927f4d7ab05d7ee9d19d551522dbbe3c1004ca7184c630e8e9111c0bf959976a + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.0.3.tgz + version: 9.0.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-01-23T08:35:48.236083964Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 279020d7a4daa5f383fb869f377c92bc5d67a9dfd793b27bf2a89a7edf23db38 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.0.2.tgz + version: 9.0.2 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-01-13T15:58:36.102935644Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 082133b5dab566fa73bbb41d33d4b7bc29e2c5ca7823a29609501def6d6f0ea0 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.0.1.tgz + version: 9.0.1 + - annotations: + category: Infrastructure + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-01-13T07:55:04.288580996Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 10.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 40c7b9be2ff6e8d719c0e87be40b165f76ef43c7589599f21bbcdfc6b8012117 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-9.0.0.tgz + version: 9.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-01-04T10:57:17.565040185Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 524e18ab16c45a82cb7196ee7a788610ca77ac53eeaba19a42f77ebb0a932acd + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.28.tgz + version: 8.0.28 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-01-03T12:17:09.042641644Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 72690c963be8751ab370d04f3a9289cfd251cd98ea8c20c0fc8caadd6c741377 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.27.tgz + version: 8.0.27 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.1.1 + created: "2023-01-03T10:29:50.908566956Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: ed4a7fe4425d5fa09dcee68559f2b43bd6cf52c004ebff625694683d7395a5cc + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.26.tgz + version: 8.0.26 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.1.1 + created: "2022-12-10T02:56:05.770086567Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 0a9123df0c2cbd7d3e5b9e0fc6abc7e2763e5f3e658e0a78c31acc3e87d46f24 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.25.tgz + version: 8.0.25 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.1.0 + created: "2022-12-09T15:30:04.929839188Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 314bf5321c2469d27cd8c51671d400d68c9e08b98d036b50c0ced3d317acf506 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.24.tgz + version: 8.0.24 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.1.0 + created: "2022-12-07T00:15:21.502422765Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 4cdb6eb914189c60b2e844b7df8faf361647a9d63cf8c2bcd8b87730e15e4fa0 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.23.tgz + version: 8.0.23 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-12-03T02:47:24.048255462Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: a4fc366c819ad4cea054668fea3906708f4c34d82428541757d8c61074244fee + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.22.tgz + version: 8.0.22 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-12-01T20:44:03.770302192Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 8653b637cce19d70f029a64d8a7da8bf10133fe59a0b75d9368ea599a37c08f0 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.21.tgz + version: 8.0.21 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-30T18:44:49.057793717Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: e015a77841ee0b13b8448615cc9130b584f6108b63f83c9d25fb77348f539bc7 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.20.tgz + version: 8.0.20 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-29T20:07:36.251683391Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 16caacfcf56da427efba7864b8530a78e6c5de233ecf544520d7d5dffb3e603f + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.19.tgz + version: 8.0.19 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-24T18:16:53.532503671Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: aa660aaad57ba8c5ae425566347c03da258d3ffb22c3d6a4a7a99821b403cc79 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.18.tgz + version: 8.0.18 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-18T23:01:56.852368522Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 8702b190a038ad72b642b2a3e542b8105c6a853c86496ac910fb29f232232103 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.17.tgz + version: 8.0.17 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-18T07:39:35.294590949Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: b91de42a5e9bf4cf10d3c82dc0ff69705d2fceb3ad727f1b1a8d5b067f8fb930 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.16.tgz + version: 8.0.16 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-17T11:53:06.410472909Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: a6742be1193b20a94511208d3d44559dcb33d5fa8085b24da8bc335994490e8a + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.15.tgz + version: 8.0.15 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-16T17:05:14.253640641Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 2d80bb4cdff2bc10e7a86240bc5c3b7471d2b2e59a0a388c5ef490da8fe9b729 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.14.tgz + version: 8.0.14 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-15T17:59:22.219056693Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 4fc2f9a5597a6db9e4a5d38f08ae9ee818a28e1604cee16471bac148df0aed5a + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.13.tgz + version: 8.0.13 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-14T23:59:39.586975164Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: e0165ae7b82d67b1854321136a2df07d5e4acc0c1470a85d072c4c3a125fd326 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.12.tgz + version: 8.0.12 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-10T16:30:49.862103661Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: b2f7a63d919b5d9da5ff63db2001f213453b48bb35bcd101a23f25eed2af6e0f + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.11.tgz + version: 8.0.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-09T06:03:01.613447039Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 20ca2b3d0dcdaa9ffd02ec8b154506e3afa8841c80a8f092bcf65ccf453abe99 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.10.tgz + version: 8.0.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.1 + created: "2022-11-09T01:58:23.309176657Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 843958fdbdf906041ca856a17837e49611afd5fa029d4c54d47f6050dcd47566 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.9.tgz + version: 8.0.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-11-08T09:30:52.480384793Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: c39ca66dcc861249291294c53e4b62fe0eff054faaea67c8e4b9622d135ab0ab + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.8.tgz + version: 8.0.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-11-07T08:16:11.697741Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: e6c88fe88d52cb8d85a3d39db0ba1c4682e34227df544a6b7bd214f15b2aacd7 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.7.tgz + version: 8.0.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-11-04T08:32:42.118078354Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 4e1bfcf8055f938c30f2ad361e17febf42c0885fd9ce81fbd413323542989ec6 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.6.tgz + version: 8.0.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-11-04T07:18:11.094414846Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 5ef1ad50496d1a6a0f8e32d649e9fd3bf222905406244d5afba40113b54e0e51 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.5.tgz + version: 8.0.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-11-01T09:56:38.009811994Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: d94f3b08aa23da8fe501397cdcc67417af207671ebd8a58b8635bcc5f1788eba + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.4.tgz + version: 8.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-29T01:54:37.88788216Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 336fd6d2775e89dbe210b6ba2b0bd0d3885dad3ff97b23afd74d387e611e6b80 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.3.tgz + version: 8.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-28T23:30:10.521687601Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 1da7ac903102189eb203b52e282999b784b3763fe38dc38cffe9ded6af6d8c90 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.2.tgz + version: 8.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-28T20:33:39.505697141Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: 83831bcbc2abf149844c98282ade26956d56047c55e0922fd3353adf5455c532 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.1.tgz + version: 8.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-28T12:05:22.881860672Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:75db94cb72edebce3adc24fbc4c30bf6cb964d6b0a26cb3cf1780d9ee0dd730c + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-8.0.0.tgz + version: 8.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-27T15:55:15.712818304Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:a3ad31471b64c25f90d8cfaeeae5c5b7a31e5d5266b4f8108289b47c2087fe7f + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-7.1.3.tgz + version: 7.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-26T00:40:08.442551788Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:be65e5bcce7d4b0920e4e56b6cb1ec5041551afb2abc3b1308f73a638311c376 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-7.1.1.tgz + version: 7.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-25T13:40:41.608583577Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:dd65254792afeb0f073c1d0b28faed8e50d196686e9ba13c8a6bfe394149f796 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-7.1.0.tgz + version: 7.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-25T05:18:23.190239195Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:3bf07cd6d99b980e8eaa89ef13cc8b42a2e7076f6e004489bb646968ebb23bb6 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-7.0.5.tgz + version: 7.0.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-24T14:04:36.261037678Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:92b3d5058d064d1cf4bd10bffa6a42cf6335dee1d0b802ad9e0c22de7d24ad49 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-7.0.4.tgz + version: 7.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-22T06:26:37.071154573Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:4e38e9eddc4266f57e9f46df192ff1784e6fd3f3024962c74aef0d16b349a988 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-7.0.3.tgz + version: 7.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-22T00:15:38.487626162Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:dbc54d440f9ea8d9cca9981b0f2bdd1467c7c36de7452b43e58eb6e581738cf3 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-7.0.2.tgz + version: 7.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-17T15:43:50.300801518Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:6faa5c7b6e89508b50adbabd799498f28d57695130b0103b0d8fc3c444f6b0d3 + home: https://github.com/bitnami/charts/tree/main/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-7.0.1.tgz + version: 7.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 3.0.0 + created: "2022-10-10T19:04:58.474691808Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:50d8ee81ad1c4d385326be7e7e8afdfab7b7da61abbbbb1015377e8d956e1cc6 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-7.0.0.tgz + version: 7.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-10-04T15:07:46.012950167Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:3d07a2b2d2276ef846cd71dfefb75e9b140d16b1d358f7677559378204d1f2e9 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.14.tgz + version: 6.4.14 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-09-24T01:55:52.351241345Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:c0ba84e38425f7171302d57c48f5aa71b1311213610e711310c09c09c05d6b48 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.13.tgz + version: 6.4.13 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-09-14T15:33:51.347895291Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:46af4da20a87e5c52f6a2301771a41f5a934ce97144ae030e2b64ba3bde3760a + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.12.tgz + version: 6.4.12 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-09-14T11:01:14.338424667Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:d2e0a5ff622c971e83a9c0d06c62b03f18693e10c2168ff35fdf534060565eca + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.11.tgz + version: 6.4.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-09-13T20:31:23.412777621Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:4c503e70efdd2b4bb604d729e2461e743eeacb97868e2772112119ce88d93543 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.10.tgz + version: 6.4.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-09-13T04:28:00.552575736Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:e5e5e2a4004be51624438cd6067696c3d3ed93549c7d2deb47b5da5c7cab7d57 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.9.tgz + version: 6.4.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-09-10T05:29:30.654351669Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:56d7c824b51f6217a28b523a4f788871324a8af748430f40646f0e97725756d4 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.8.tgz + version: 6.4.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-31T23:56:41.760007252Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:b63ca6198e9a7a9f0dfc847fbecddcdf18ce298e6ef1dbe55bd4fba5c99c0c86 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.7.tgz + version: 6.4.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-31T01:17:02.200830484Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:453c9b4e0d9acec9ab88adb8a084332aad6d1308590387f7bd65d5491542befe + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.6.tgz + version: 6.4.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-30T05:31:46.880306128Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:f1dbb207de7244c00f56361ad4a4e389e625a59b2616f6a26ce4d5b53c8b653b + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.5.tgz + version: 6.4.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-29T22:57:53.527219608Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:bcd559412d9ec864f04dbf828928a718b5279a5bde6903c9c25178b6525f980d + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.4.tgz + version: 6.4.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-24T00:40:04.297669282Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:9cd2dbfa0f37d620dede1a8db433fefe9b9d74c89e67fa2e1dc1e541d2ba707f + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.3.tgz + version: 6.4.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-23T03:39:56.29183861Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:7a6dd9797c06c77b86cf88f040562d86062dd14421e7e7e8565611866fac1537 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.2.tgz + version: 6.4.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-23T01:27:03.94273371Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:6fce66ac4b1ce7eab0271336308156e4aaa5db353889d85f2e3c9fa7cfce1ddf + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.1.tgz + version: 6.4.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-22T18:43:06.609703426Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:73bb1c3dd637157bdd5fcb46644841ac32208acba0f51a8571f7e892b7ffd88c + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.4.0.tgz + version: 6.4.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-09T18:13:17.188903527Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:a89d2270461aea3e44d9db2d12b4646bb101928ddb1b3b3687972719de344bc6 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.32.tgz + version: 6.3.32 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-05T10:34:48.336251708Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:6abf291c22165efc92b8d69d96347f4d6c42d948f5bef1247935850a77b49cad + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.31.tgz + version: 6.3.31 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-04T23:33:10.874662059Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:e124e26eaa146b345f03765b4ad665c42e715e41898f0f4336a9d22a4e250584 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.30.tgz + version: 6.3.30 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-04T01:34:54.686480397Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:c03e58586f2af260346b89f0fbc4a87442722d20483ea61a9024978240fe8974 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.29.tgz + version: 6.3.29 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-03T09:56:04.900223165Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:5aab1bddb9d1d01021dcc10adbe26a521fd0c1fdb1495bd59ad2ce4f06505075 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.28.tgz + version: 6.3.28 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-08-02T10:07:47.707770687Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:a249ac55f13486d291940873e0bce30e44f03c3112a6d45a9ae2d54207b9adce + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.27.tgz + version: 6.3.27 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-30T13:45:16.134033371Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:702162432933a1628f31e4a185efb9f40b39931f7aa1561dd0eab506a2b2bdda + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.26.tgz + version: 6.3.26 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-27T20:09:51.103398917Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:401de01a99e6e73f4046707bef0a70c40a78c5ebd887d29c450a249653a6a695 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.25.tgz + version: 6.3.25 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-27T09:04:24.852673367Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:83d7532e3d21873d2f6d4f73f18b9782f2810cfb1a4b248fd02212092dfefb14 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.24.tgz + version: 6.3.24 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-21T21:37:36.828469395Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:a8475205d76a0a4cc0897945a17f704bd6339ca1e56f36b4bfe1826e3f342539 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.23.tgz + version: 6.3.23 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-20T18:08:12.845939492Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:cac12662b5a7209f6bf7bc8ed2cbeeb7b9587d45ce3177ec7cd9b72a669d6066 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.22.tgz + version: 6.3.22 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-20T06:37:04.996735515Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:d6f2fa2b749c89693e874b720687d18f16c73e86fc3b2799a6c4f7f1a0efad0d + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.21.tgz + version: 6.3.21 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-16T20:00:20.537963215Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:bb4af7e8d80159ea7e318085f8dc05b03d2ef4c55fcad690f68a6cb5cd2ed6fb + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.20.tgz + version: 6.3.20 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-12T22:55:01.71657209Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:f3d6c1f807bc4ff0464ef85008e87d0768f833cf2f7578d03bbb81272ebe6aae + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.19.tgz + version: 6.3.19 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-09T11:11:59.337335468Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:c0471fe432cded0c5e74c0c41e2d26c06eb01b7f1f28310c9d813e78fc49388e + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.18.tgz + version: 6.3.18 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-06T18:54:20.117925865Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:c1770791931fcb5e4ba88cc5cfe9000e7eeb5c4874051ba4ac91546b334ec80b + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.17.tgz + version: 6.3.17 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-05T04:23:08.18847983Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:9926e64723b3facc5fe8c221e54418692322ce8470ba8bdd71f9e9262eb3ecf8 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.16.tgz + version: 6.3.16 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-02T06:32:01.816263064Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:42a81f22d9dc2dd6c4f7b5027839f06fb46737e5b762bb075f7d7134c025a810 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.15.tgz + version: 6.3.15 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-07-01T00:51:11.728515023Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:9d4f65b9a276adc2d972ec2a3c627fb355e1e8f30723d753d98c924038522a00 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.14.tgz + version: 6.3.14 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-06-24T09:21:55.396770932Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:6f3ea92e0d0e06a5e9aa30ff49aa82386a348948e71f6cc74071d570960a7369 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.13.tgz + version: 6.3.13 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-06-22T00:23:00.827878696Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:8930af6f51ac95a4ac5927bc7fa537ff1164288389ccbaa32ecc83799f5b44ec + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.12.tgz + version: 6.3.12 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-06-14T23:37:23.816106414Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:7851308df010d3d3ef44d02daa517cdaea0ecb1b7a673acabf89246b4a399597 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.11.tgz + version: 6.3.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-06-14T06:58:05.824776302Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:863e917d2141ce4ee3f2918f8577a22b10a198596e1d8dc5038b53dac143b7d4 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.10.tgz + version: 6.3.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-06-13T10:10:45.690537008Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:171dc4b03ad0c337f5453bb3842ff8986179c1a7c1711ac8a0d548ded663f0cb + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.9.tgz + version: 6.3.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-06-10T22:21:32.495192338Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:674581ce33a23a444a3098aec8ba3c94c5c5a9a4b9995b20d53b814afa88d3c2 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.8.tgz + version: 6.3.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-06-08T19:14:21.531055341Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:c1d3f483222cbc40a0227273944fbbacddca0538aa825a769e67f9f968030040 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.7.tgz + version: 6.3.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-06-08T10:39:51.327130744Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:1f1a4d56555d8dc40e50217420b3388309b761ac200a1b97b405f7903f76421f + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.6.tgz + version: 6.3.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-06-03T07:00:26.096695784Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:62d25344141f7bf74dd8ff7452a2cff6f4c1d34504e9b3c2d650d1b947ef115a + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.4.tgz + version: 6.3.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.8.1 + created: "2022-06-01T17:27:16.140392905Z" + dependencies: + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + version: 1.x.x + - condition: cassandra.enabled + name: cassandra + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + description: Kong is an open source Microservice API gateway and platform designed + for managing microservices requests of high-availability, fault-tolerance, and + distributed systems. + digest: sha256:144c612e77285950b741ee77f4626f510ed0fe67e8a3f88d9eb6b2d4ba9aa0d0 + home: https://github.com/bitnami/charts/tree/master/bitnami/kong + icon: https://bitnami.com/assets/stacks/kong/img/kong-stack-220x234.png + keywords: + - kong + - ingress + - openresty + - controller + - http + - web + - www + - reverse proxy + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kong + sources: + - https://github.com/bitnami/bitnami-docker-kong + - https://konghq.com/ + urls: + - https://charts.bitnami.com/bitnami/kong-6.3.3.tgz + version: 6.3.3 + kube-prometheus: + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r18 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r13 + - name: prometheus + image: docker.io/bitnami/prometheus:2.54.0-debian-12-r0 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.76.0-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.36.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.76.0 + created: "2024-08-14T14:57:19.454473006Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: d13f977dece106d3054aa803554d6732ca2b5d0f1880148b805eff61503a2361 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.12.tgz + version: 9.5.12 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r18 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r13 + - name: prometheus + image: docker.io/bitnami/prometheus:2.53.1-debian-12-r2 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.75.2-debian-12-r2 + - name: thanos + image: docker.io/bitnami/thanos:0.36.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.75.2 + created: "2024-08-07T16:11:52.654440194Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 59801c755291f0fbe3c26802da4438fbf3efb3786143a4f7f1c375fff0e164a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.11.tgz + version: 9.5.11 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r17 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r12 + - name: prometheus + image: docker.io/bitnami/prometheus:2.53.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.75.2-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.75.2 + created: "2024-07-25T09:07:34.403705868Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 735088870dc8457157d48d666c844cd89f241243a4494e7c09870fc24dfb2318 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.10.tgz + version: 9.5.10 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r16 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r11 + - name: prometheus + image: docker.io/bitnami/prometheus:2.53.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.75.2-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.75.2 + created: "2024-07-24T15:07:15.64922483Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 90545211bf5c2f7e9e7e39676b7710896dc129d35b4970960d3479c97e46eb1c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.9.tgz + version: 9.5.9 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r14 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r8 + - name: prometheus + image: docker.io/bitnami/prometheus:2.53.0-debian-12-r3 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.75.1-debian-12-r2 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.75.1 + created: "2024-07-16T13:19:36.583348801Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: ed1d63c6f6256357a0c4d315af39bb236d69556f93dbcbf5161765cb1c6d5e5e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.8.tgz + version: 9.5.8 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r14 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r8 + - name: prometheus + image: docker.io/bitnami/prometheus:2.53.0-debian-12-r3 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.75.1-debian-12-r2 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.75.1 + created: "2024-07-04T18:33:16.050197699Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 5be057630f320a04a16e67ec0912c7aa376a14d20066ecfb4e83481afa23cd38 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.7.tgz + version: 9.5.7 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r13 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r8 + - name: prometheus + image: docker.io/bitnami/prometheus:2.53.0-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.75.1-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.75.1 + created: "2024-07-03T05:06:55.406537029Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: a6e49d52ca2a649c2d366d8f30d1b4dbcc37f21a22b30c678e4d91ce8f091ef0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.6.tgz + version: 9.5.6 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r12 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r7 + - name: prometheus + image: docker.io/bitnami/prometheus:2.53.0-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.75.1-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.75.1 + created: "2024-07-02T14:51:42.322241692Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 91ab2277d91696c9174f791d3686aedf2d1d94ee23fdefe379e504a82ba0cfbb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.5.tgz + version: 9.5.5 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r11 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r6 + - name: prometheus + image: docker.io/bitnami/prometheus:2.53.0-debian-12-r0 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.75.0-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.75.0 + created: "2024-06-26T17:50:01.523329318Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: d3c7aa2aeeadf63ec9e3d7b309171dc7a7b0646b71c287f5d95bdf5e96a41e3b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.4.tgz + version: 9.5.4 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r11 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r6 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-06-24T15:00:30.009938054Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: fbf7d751c826a29adbae04f6f571655af6e4fd90ac6e89ab8662816ca8a9b954 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.3.tgz + version: 9.5.3 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r11 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r6 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-06-18T13:08:33.14612959Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 8064c712090bddaba1ea748f6188c03972033ea055c5ebd8f0a6333ca51ec8e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.2.tgz + version: 9.5.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r11 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r6 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-06-17T13:21:27.418685544Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 2f233b2de9ba6e4ae0cac712bb5713a8b21185482be20e3d585e52c8d93b7bf6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.1.tgz + version: 9.5.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r11 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r6 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-06-10T11:58:34.878759639Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 9a3965ead07a0dcb1abea2a61938f180482b25e244e01a255527a71695298116 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.5.0.tgz + version: 9.5.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r11 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r6 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-06-06T16:14:14.363155623Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 8559582aa5270592a6be521bbfdbe8c29493cbb42dc61b5d7632bfa5dbc72e7e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.4.1.tgz + version: 9.4.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r11 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r6 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-06-06T07:09:12.268755449Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: f97f67cf4dfea6af151ed4c515d961274b8fcc7f3387d5aa03a2c54562e6573e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.4.0.tgz + version: 9.4.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r11 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r6 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-06-05T14:11:13.61362111Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: ad01299951788a9b83a64f009c461a99de0f8b73417803d03b6ba044d3cd1931 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.3.3.tgz + version: 9.3.3 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r11 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r6 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-06-05T09:39:37.583759212Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: b3475710c9eb121b60dbdc5462e2312dc5667da9639a7418131da8404e88d27a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.3.2.tgz + version: 9.3.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r11 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r6 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.35.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-06-05T06:32:33.799812665Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: f5e520ce5140caebb1a5fe522fc7298afb6aed1dcab0184d47ce35fd30a80d73 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.3.1.tgz + version: 9.3.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r10 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r5 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.0-debian-12-r2 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.35.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-06-01T00:31:36.976602281Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 38bddca4427d09d3fb462473f0f52644c85bec11a2071d3f41aecf102f8317d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.3.0.tgz + version: 9.3.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r10 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r5 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.0-debian-12-r2 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.35.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-05-23T07:46:16.916945133Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 491f2db1d51c759431a2669add062e04acf120bfc3644224fcdb9b5a87ff6172 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.2.1.tgz + version: 9.2.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r10 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r5 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.0-debian-12-r2 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.35.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-05-21T14:16:45.369645837Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: fc619280c3cc1c9e01e59a0eeb9edd79bc2a688a3979eafcc7bbee4c98773564 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.2.0.tgz + version: 9.2.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r10 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r5 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.0-debian-12-r2 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.74.0-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.35.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.74.0 + created: "2024-05-20T00:53:21.075581501Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 685f862ae581d3c0d11a1daa0deeb0aba281245172139ca1e6c86a7243ca1767 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.1.2.tgz + version: 9.1.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r10 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r5 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.0-debian-12-r2 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.2-debian-12-r6 + - name: thanos + image: docker.io/bitnami/thanos:0.35.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.2 + created: "2024-05-18T04:15:17.357711336Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: a1fea70a64d177a5e8a49712821d18979a60594f1e03c36e71e53a4468a684d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.1.1.tgz + version: 9.1.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r10 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r5 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.0-debian-12-r2 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.2-debian-12-r6 + - name: thanos + image: docker.io/bitnami/thanos:0.35.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.2 + created: "2024-05-16T15:27:38.313227549Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: efcd513551ee59af63ddaadaeeef73a3dfb69f8ec69e91d90cc60e2c42cd0260 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.1.0.tgz + version: 9.1.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r10 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r5 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.0-debian-12-r2 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.2-debian-12-r6 + - name: thanos + image: docker.io/bitnami/thanos:0.35.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.2 + created: "2024-05-14T05:34:53.844962165Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 9cddf11e8b6b28ba0994ba21e76b15f6258e721ab067ff769a1869d93723f7f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.0.9.tgz + version: 9.0.9 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r9 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r4 + - name: prometheus + image: docker.io/bitnami/prometheus:2.52.0-debian-12-r0 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.2-debian-12-r5 + - name: thanos + image: docker.io/bitnami/thanos:0.35.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.2 + created: "2024-05-13T14:26:02.480749035Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 4ef97567b2f0ced6850bf4d952aee12315d75dfbe115c4885d396507c1470f40 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.0.8.tgz + version: 9.0.8 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r7 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r3 + - name: prometheus + image: docker.io/bitnami/prometheus:2.51.2-debian-12-r3 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.2-debian-12-r4 + - name: thanos + image: docker.io/bitnami/thanos:0.35.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.2 + created: "2024-05-08T04:03:39.675787073Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: deade350c276ff794f90393b3d9d77cdd00e4dacfecb094cc1a64a49d4e497b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.0.7.tgz + version: 9.0.7 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r6 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r2 + - name: prometheus + image: docker.io/bitnami/prometheus:2.51.2-debian-12-r2 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.2-debian-12-r3 + - name: thanos + image: docker.io/bitnami/thanos:0.35.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.2 + created: "2024-05-06T07:24:57.220207594Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 54e473c3d079540a86caae4080c8b830de4c3b442e333ff135b0b64f460353a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.0.6.tgz + version: 9.0.6 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r4 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.51.2-debian-12-r0 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.2-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.2 + created: "2024-04-19T19:36:38.894634509Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 91415f80c80e43ba491feed8e3ec271da009b3621aee56d02491f235f376ca2b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.0.5.tgz + version: 9.0.5 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r4 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.25.0-debian-12-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.51.2-debian-12-r0 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.1-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.1 + created: "2024-04-11T17:07:12.565891926Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: baab82c5e62bb45aa4014a4454fb5d9764e5039db815d006250a6df73ecf6d34 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.0.4.tgz + version: 9.0.4 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r4 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r27 + - name: prometheus + image: docker.io/bitnami/prometheus:2.51.1-debian-12-r3 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.0 + created: "2024-04-08T11:04:49.478367003Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 70c2f8ffaf9223a157311a1e8a4cdf0be698366294931aa8e556f106a583d10b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.0.3.tgz + version: 9.0.3 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r4 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r27 + - name: prometheus + image: docker.io/bitnami/prometheus:2.51.1-debian-12-r3 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.0 + created: "2024-04-05T17:09:43.430045963Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 74eab9c657fc70f873dbfee8d5b454add3b695f1b07c076d8844a00792e08b08 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.0.2.tgz + version: 9.0.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r3 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r27 + - name: prometheus + image: docker.io/bitnami/prometheus:2.51.1-debian-12-r2 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.73.0-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.73.0 + created: "2024-04-04T23:25:32.26030102Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 053005959528e8cfbb7b99f7e80f32a30dc9d66d00d5dad3d119f70402591244 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.0.1.tgz + version: 9.0.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r1 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r25 + - name: prometheus + image: docker.io/bitnami/prometheus:2.50.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.72.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.72.0 + created: "2024-04-02T14:11:34.393205624Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 4.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 33f1a61fd0fc0a6d068d387357fa545c63e9213af43d5d68d88ed487652d02b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-9.0.0.tgz + version: 9.0.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r1 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r25 + - name: prometheus + image: docker.io/bitnami/prometheus:2.50.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.72.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.72.0 + created: "2024-04-01T08:51:51.68329205Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 0f1844c2b1a0d6f024e8c4364918d8bb7b72765d08a2b30a98ef29828b246427 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.30.3.tgz + version: 8.30.3 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r1 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r25 + - name: prometheus + image: docker.io/bitnami/prometheus:2.50.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.72.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.72.0 + created: "2024-04-01T08:23:23.072020446Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 0eeb7105507ab28c96c2d88e6c37177e32a53482ee04ab864d84f0fbd2fb6d64 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.30.2.tgz + version: 8.30.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r1 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r25 + - name: prometheus + image: docker.io/bitnami/prometheus:2.50.1-debian-12-r1 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.72.0-debian-12-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.72.0 + created: "2024-03-07T00:25:30.462219208Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 6020b83045c03d4a122810852f79f7e163eb77dfd0cdd65ffda0497608159ad6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.30.1.tgz + version: 8.30.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r0 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r24 + - name: prometheus + image: docker.io/bitnami/prometheus:2.50.1-debian-12-r0 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.72.0-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.72.0 + created: "2024-03-06T10:31:17.514964005Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 97445d9930caea8b381f48884e3838354dc077078df43c110c3f34147ffc20b8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.30.0.tgz + version: 8.30.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.27.0-debian-12-r0 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r24 + - name: prometheus + image: docker.io/bitnami/prometheus:2.50.1-debian-12-r0 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.72.0-debian-12-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.72.0 + created: "2024-03-04T23:32:49.309211995Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: a3f239d209bca9b5d4bef4f782d52d108688b0dcfdff00bb339af1405ac1cbf1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.29.1.tgz + version: 8.29.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-12-r26 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r24 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-12-r9 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-12-r7 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-02-27T12:54:10.13353851Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 6657e8555ad27a403b91cd2c3e072582020fecd43a1ec062a9a992f80aa2827a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.29.0.tgz + version: 8.29.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-12-r26 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r24 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-12-r9 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-12-r7 + - name: thanos + image: docker.io/bitnami/thanos:0.34.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-02-22T14:22:28.929482899Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: b3a36cb819a2d2218187f22d96aa53eac86ead405861a366af0779c2460c39bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.28.2.tgz + version: 8.28.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-12-r25 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-12-r23 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-12-r8 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-12-r6 + - name: thanos + image: docker.io/bitnami/thanos:0.34.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-02-21T15:12:30.383042359Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 013162d2fb7ddd399ead43fc10a90887a7fc63ea4da80f48112a9b36e4f9f221 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.28.1.tgz + version: 8.28.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r54 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r150 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-11-r4 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r6 + - name: thanos + image: docker.io/bitnami/thanos:0.34.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-02-19T15:21:06.855431708Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: dfaa0036e0af095d66e957e414dae47e5573afb7c697429a871467a7ef7e5059 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.27.0.tgz + version: 8.27.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r54 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r150 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-11-r4 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r6 + - name: thanos + image: docker.io/bitnami/thanos:0.34.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-02-14T13:30:44.086776172Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: f0edc5708591bef19cfdcfc00f9ff2f615a1aca069730d9c63e02f35ef796867 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.26.0.tgz + version: 8.26.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r54 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r150 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-11-r4 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r6 + - name: thanos + image: docker.io/bitnami/thanos:0.34.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-02-08T01:05:04.016617657Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: a381b9389018d624c15ed1fa01ad338e339d06b744fd7ded1c6620afc71da8b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.25.10.tgz + version: 8.25.10 + - annotations: + category: Analytics + images: | + - b + - l + - a + - c + - k + - b + - o + - x + - '-' + - e + - x + - p + - o + - r + - t + - e + - r + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-02-07T11:35:30.054924665Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 34261d8f6d5b4a4a329169487c651f76c98e4da5a978a4a89e6b0f4228625533 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.25.9.tgz + version: 8.25.9 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r53 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r149 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-11-r2 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r4 + - name: thanos + image: docker.io/bitnami/thanos:0.34.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-02-03T06:24:26.396978628Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: f915b89990b3c3383c95f92954f9e8f70d71b2776d32e1e792188d7cff6b7e44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.25.8.tgz + version: 8.25.8 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r52 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r148 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-11-r1 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r2 + - name: thanos + image: docker.io/bitnami/thanos:0.34.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-02-01T05:23:53.431695785Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: ce5f696dcd8bcf6b51ca867081bbbf0bc3949d65c9fb04bedd3c465e484fabaf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.25.7.tgz + version: 8.25.7 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r48 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r144 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-01-29T10:42:58.070734116Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: a69d2706c4b472722f7dab9a14e7e8dda828107fefdc5affde7ce9593e36d446 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.25.6.tgz + version: 8.25.6 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r48 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r144 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-01-26T12:07:54.245435754Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 8cd5a11746601b01ebdd563550c40b40bd53c0cc4e75e1f87e93e7d0599edb60 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.25.5.tgz + version: 8.25.5 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r48 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r144 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-01-26T10:31:32.424032832Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: a3ca4fc4dcc64e2b4df0a1b6f7a6e709196fb09f1bab180c301ef5c1a1cf5238 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.25.4.tgz + version: 8.25.4 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r48 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r144 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.2-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.2 + created: "2024-01-25T17:49:47.811955328Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 0043f0ff97e35445ee3abade622c2c9dd3b9e8ff48df2bbef94dff323ce01bbc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.25.3.tgz + version: 8.25.3 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r48 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r144 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.1-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.1 + created: "2024-01-25T12:44:28.041195726Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 663f683fd4f66cc36628d9411093f4dcec6f1bc81c875905072b7f6c24c69587 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.25.2.tgz + version: 8.25.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r47 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r143 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.0 + created: "2024-01-22T13:30:08.051409722Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 9effe961bae6660e4b046c08a2ed5c712afca9cde3f4136f179bb2778960670d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.25.0.tgz + version: 8.25.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r47 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r143 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.0 + created: "2024-01-18T15:39:01.075080547Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 36559c1440e2caeb53f54849e1d5bd293a49bf2e5c4314a0afa1b2a991dd89a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.24.2.tgz + version: 8.24.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r47 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r143 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.49.1-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.0 + created: "2024-01-18T08:37:13.633156258Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 0a18170f4c5ab9d5061444848706a2ca45cf1fa970fe769819c34cbcda0ec664 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.24.1.tgz + version: 8.24.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r46 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r143 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.48.1-debian-11-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.0 + created: "2024-01-17T08:56:32.931466064Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 94607efb4448dbd5d42fc4194885b2f77ff6c83f00f2e238ccba928d51d2572e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.24.0.tgz + version: 8.24.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r46 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r143 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.48.1-debian-11-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.0 + created: "2024-01-15T09:06:30.846651325Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 03d35a9cfb7ccae6cdf912271e08022d9e084cb76c1c61334c9eba1d2cef9ab3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.23.4.tgz + version: 8.23.4 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r46 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r143 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.71.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.48.1-debian-11-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.71.0 + created: "2024-01-12T13:52:02.125665565Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 4f9ab32b890d3b8f0a955ee5a0be3ab981cbae1e3144fd183e046fec01356200 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.23.3.tgz + version: 8.23.3 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r46 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r143 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.70.0-debian-11-r4 + - name: prometheus + image: docker.io/bitnami/prometheus:2.48.1-debian-11-r1 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.70.0 + created: "2024-01-10T22:34:55.36872991Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 243e54427c194bd8eb95356c7da05909cbd101d196e2e0d04bfbc82eb1b9169a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.23.2.tgz + version: 8.23.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r46 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r142 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.70.0-debian-11-r3 + - name: prometheus + image: docker.io/bitnami/prometheus:2.48.1-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.33.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.70.0 + created: "2024-01-09T17:14:05.480558168Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 0f7f5256bbe51ea8f0fa2bb3d36102857b63ce612d9cde412e3337f0e18253d1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.23.1.tgz + version: 8.23.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r45 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r141 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.70.0-debian-11-r1 + - name: prometheus + image: docker.io/bitnami/prometheus:2.48.0-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.5-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.70.0 + created: "2023-12-07T11:04:44.437377235Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 2b9191fd657f26113656a89fd6908c7ae4860e515add6ca45361eb6ba3bb0feb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.22.8.tgz + version: 8.22.8 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r44 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r140 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.70.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.48.0-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.5-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.70.0 + created: "2023-12-05T12:47:54.477455126Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 907720e56fdb38e5440493c1a9865857785a485f7169fc961b01a018bb8a88d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.22.7.tgz + version: 8.22.7 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r44 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r140 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.70.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.48.0-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.5-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.70.0 + created: "2023-11-30T18:41:46.97181905Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: f0383e7b049bee1573593c4d4585c056da8aca624da89ffc558efe74553759c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.22.6.tgz + version: 8.22.6 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r44 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r140 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.69.1-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.48.0-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.5-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.69.1 + created: "2023-11-21T22:11:46.994690593Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 0e2ba62ac65e8cca465573cfa5ea9ca89c8ebb947910c5a0fe511f42c1393d44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.22.5.tgz + version: 8.22.5 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r44 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r140 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.69.1-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.2-debian-11-r2 + - name: thanos + image: docker.io/bitnami/thanos:0.32.5-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.69.1 + created: "2023-11-09T17:18:24.699435166Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: e5a64c5bcd8dfbc64720d52a8353831c378050a0e829f66a7304e2661547a4b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.22.4.tgz + version: 8.22.4 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r44 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r140 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.69.0-debian-11-r1 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.2-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.69.0 + created: "2023-11-09T03:41:52.752766187Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: fb3ed597afc4aed9678e5e65ee5b59d7147f5f1b0dfc918c95c15f071cb3d2cd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.22.3.tgz + version: 8.22.3 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r44 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r139 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.69.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.2-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.69.0 + created: "2023-11-08T16:45:55.02950092Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 55ea963a9372a3a85181ae2d400a274ef16c4038ef011daaf098d9002709ae26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.22.2.tgz + version: 8.22.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r43 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r139 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.69.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.2-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.5-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.69.0 + created: "2023-11-06T20:43:17.815015022Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 57d55722121fefc92e7907494a8fc51073fb9d79d66d25339b26d2a3fc273140 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.22.1.tgz + version: 8.22.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r43 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r139 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.68.0-debian-11-r27 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.1-debian-11-r2 + - name: thanos + image: docker.io/bitnami/thanos:0.32.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.68.0 + created: "2023-10-31T18:28:54.711313011Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: fc59fdd2c3c23319af3e236dca4a1d19c6f9c540e7b29cf7a7c00729a55fef40 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.22.0.tgz + version: 8.22.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r43 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r139 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.68.0-debian-11-r27 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.1-debian-11-r2 + - name: thanos + image: docker.io/bitnami/thanos:0.32.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.68.0 + created: "2023-10-16T09:54:49.033974621Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 0d6a420f2611fe9b950c5349bc5e57e43063189a6b4fefa8e10cba4c240849b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.21.6.tgz + version: 8.21.6 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r43 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r139 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.68.0-debian-11-r27 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.1-debian-11-r2 + - name: thanos + image: docker.io/bitnami/thanos:0.32.4-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.68.0 + created: "2023-10-15T10:40:33.525267335Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 0a144956f2cd029de3e42e6fec834a9ae21ae51213ede489662189daaf777c04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.21.5.tgz + version: 8.21.5 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r38 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r135 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.68.0-debian-11-r24 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.0-debian-11-r26 + - name: thanos + image: docker.io/bitnami/thanos:0.32.3-debian-11-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.68.0 + created: "2023-10-04T11:40:43.126410194Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: d7412f2029224ebaf8d7057a1cb7821a47b0c50c56107af95eadaa34395cdda3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.21.2.tgz + version: 8.21.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r38 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r135 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.68.0-debian-11-r24 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.0-debian-11-r23 + - name: thanos + image: docker.io/bitnami/thanos:0.32.3-debian-11-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.68.0 + created: "2023-10-04T09:26:42.296366637Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: e949e8c276477e7e3c72d5a46fb83fc6ced745d61de7a40a54fc8d531931bef5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.21.1.tgz + version: 8.21.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r14 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r109 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.68.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.0-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.2-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.68.0 + created: "2023-09-28T14:08:58.17525736Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 59a0b7f9af3ed9ca528843960bebc8c36056975cdfb46edc13086117e7b8b37d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.21.0.tgz + version: 8.21.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r14 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r109 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.68.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.0-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.2-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.68.0 + created: "2023-09-20T14:20:13.718252696Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: cd26902da8fa287415e0f2cd187ef5715756c08646073eb151e5a5347d9fc3a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.20.0.tgz + version: 8.20.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r14 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r109 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.68.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.0-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.2-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.68.0 + created: "2023-09-19T14:00:00.099073739Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 8ba1874b40e0a2536812fdeb064bbfd572fa9e8ca3ec16ac2f8131f25c2e92f9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.19.0.tgz + version: 8.19.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r14 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r109 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.68.0-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.47.0-debian-11-r0 + - name: thanos + image: docker.io/bitnami/thanos:0.32.2-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.68.0 + created: "2023-09-08T18:35:33.841146924Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: c4e4a563c90c157ec6d6ba2b98470c349f858ec413b574663bb87992d9f53c23 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.18.3.tgz + version: 8.18.3 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r0 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r94 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r19 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r25 + - name: thanos + image: docker.io/bitnami/thanos:0.32.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-09-07T10:22:58.296222992Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 5cacc6c6c0728f4a67e9049bff8d6c698544964abee04959e9add25d2927f138 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.18.2.tgz + version: 8.18.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r0 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r94 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r19 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r25 + - name: thanos + image: docker.io/bitnami/thanos:0.32.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-09-06T15:19:13.898190619Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 46370b0d9b260f9752a22e0592da42481f02b5cd0533e446609d3525348ffba5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.18.1.tgz + version: 8.18.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r0 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r94 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r19 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r25 + - name: thanos + image: docker.io/bitnami/thanos:0.32.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-08-31T15:58:20.595860485Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 67d7915fc9bae0c1b5b1b98ac1755c410bc39ce30b924d2f125210d693a6bd48 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.18.0.tgz + version: 8.18.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.26.0-debian-11-r0 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r94 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r19 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r25 + - name: thanos + image: docker.io/bitnami/thanos:0.32.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-08-24T16:35:26.859044666Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: db6ca370fe76de0fe08994022876083ac3e1ed4909650de386e3c40e7bc70f7f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.17.2.tgz + version: 8.17.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.25.0-debian-11-r188 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r92 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r15 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r22 + - name: thanos + image: docker.io/bitnami/thanos:0.31.0-debian-11-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-08-20T20:14:25.855278998Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: f2ebce16295e6cc107c83c107bd49551b0a1181457d6f396db1b6c44bce2c73c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.17.1.tgz + version: 8.17.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.25.0-debian-11-r183 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r88 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r11 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r20 + - name: thanos + image: docker.io/bitnami/thanos:0.31.0-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-08-18T15:05:43.458774827Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 5e5be5394802c9627edb3b3ee48cb56a6b7c98b7c69bd6c47a8da61586bf36b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.17.0.tgz + version: 8.17.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.25.0-debian-11-r183 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r88 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r11 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r20 + - name: thanos + image: docker.io/bitnami/thanos:0.31.0-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-08-17T19:22:44.108851087Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 68b8217e23a1544aa3a90066bc0ece19a9bc7855e7c7f165f8831dfb86c0394c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.16.3.tgz + version: 8.16.3 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.25.0-debian-11-r171 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r76 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r5 + - name: thanos + image: docker.io/bitnami/thanos:0.31.0-scratch-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-08-09T09:09:39.472604494Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 40110eb79a32860744bcad756c39353e26c59bbb7989f401b42c199924176510 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.16.2.tgz + version: 8.16.2 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.25.0-debian-11-r171 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r76 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r5 + - name: thanos + image: docker.io/bitnami/thanos:0.31.0-scratch-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-08-08T15:03:50.874630942Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: d57b9480e0450bd714e05a9b96d58ef259cbb0ea33658503c7fefca0fb56ccef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.16.1.tgz + version: 8.16.1 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.25.0-debian-11-r171 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r76 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r5 + - name: thanos + image: docker.io/bitnami/thanos:0.31.0-scratch-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-08-07T18:12:15.854806126Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 5fb6f286155da9d0a178be558cf21cb1f9867ffd2002b3813820ae0a3e480097 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.16.0.tgz + version: 8.16.0 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.25.0-debian-11-r171 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r76 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r5 + - name: thanos + image: docker.io/bitnami/thanos:0.31.0-scratch-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-08-04T15:14:55.212125815Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 6f35e52c1c2bbb3d8dc87c37280fbc8b05f2ea9f984e73268d0f59bef1c58b35 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.15.7.tgz + version: 8.15.7 + - annotations: + category: Analytics + images: | + - name: alertmanager + image: docker.io/bitnami/alertmanager:0.25.0-debian-11-r171 + - name: blackbox-exporter + image: docker.io/bitnami/blackbox-exporter:0.24.0-debian-11-r76 + - name: prometheus-operator + image: docker.io/bitnami/prometheus-operator:0.67.1-debian-11-r0 + - name: prometheus + image: docker.io/bitnami/prometheus:2.46.0-debian-11-r5 + - name: thanos + image: docker.io/bitnami/thanos:0.31.0-scratch-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.1 + created: "2023-08-03T16:38:39.911832266Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: d935ea86b4204e8b695cdb4e009ea187d037129543da98e29d759979692b100d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.15.6.tgz + version: 8.15.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.67.0 + created: "2023-07-28T17:41:14.597283403Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: b234e451b068d465499280344cba9e87c9ad0db8658cad72977bba8aa605acc9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.15.5.tgz + version: 8.15.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.66.0 + created: "2023-07-26T08:35:48.102040906Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 6a85569ce9ac2c6c5d13cc31f0352c70d8ef32b5a6b5ec44fa5fd57c310adf3c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.15.4.tgz + version: 8.15.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.66.0 + created: "2023-07-18T13:44:36.33723443Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 52292bfbe942cbd0e615e918a7157e2e52db5162597aeea7dbeab13fa462c3ab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.15.3.tgz + version: 8.15.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.66.0 + created: "2023-07-15T09:27:18.736738897Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: e029e3e117fb69928dbed34e75874570d50924b796e7870b7673ae055182bebf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.15.2.tgz + version: 8.15.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.66.0 + created: "2023-07-05T21:14:11.290913959Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: f30243473f67f741a8b6e3a3a691d0b8157823dd66786a60a942b06f64c4df5a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.15.1.tgz + version: 8.15.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.66.0 + created: "2023-07-05T08:33:30.497185488Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: e233fb6e0a443a36bce585c069dc59bc839aba79a3656744216002a5c7fb807d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.15.0.tgz + version: 8.15.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.66.0 + created: "2023-06-28T11:11:09.892110415Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 896555b7b68e36b839be7251b7937fea3b881cdd49f81d6f8720b1c077114f4c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.14.2.tgz + version: 8.14.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.66.0 + created: "2023-06-21T10:59:18.38717033Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 153d9dfc73d8b3a7241008ddc20fca91d06b2bd4844d3a0eba11967d2a6d5e94 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.14.1.tgz + version: 8.14.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.66.0 + created: "2023-06-19T08:11:20.761459325Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 3aff1857bd2955a8e09dd2fbecd7b57dcf54d1dfb31733de40388437a59d0e06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.14.0.tgz + version: 8.14.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.66.0 + created: "2023-06-14T20:15:09.381406379Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: c5497050c459eadd5a907905b666133aa5ca1786e133929c69386def3840b95b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.13.1.tgz + version: 8.13.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.65.2 + created: "2023-06-02T12:11:54.461599005Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: b30859188704e7371eb4a9401a042c4a7a7b931734a7582d3b7f7d95fc522df9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.13.0.tgz + version: 8.13.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.65.2 + created: "2023-05-31T19:49:25.424954894Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 621593c44b7f21e026820439db0c13cc83346c74ece42c2e3b3a82a3297b7741 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.12.1.tgz + version: 8.12.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.65.1 + created: "2023-05-31T08:48:43.163408211Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: b7900ef01e255dc3873d4b03bf826ff489565cf300c71f02a46c96798e5d4209 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.12.0.tgz + version: 8.12.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.65.1 + created: "2023-05-29T08:37:27.754666061Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 9afc4e650012d6204d6e225079b0fc176cdee5854c637dcea361f3a04e98b2f3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.11.0.tgz + version: 8.11.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.65.1 + created: "2023-05-25T07:47:42.932087137Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: c3e8fc65450239ec01e359794202447734fd487cad15484622f098e6ff383be4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.10.4.tgz + version: 8.10.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.65.1 + created: "2023-05-23T10:17:40.504813156Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 2a0f709a4b628694a15b1d6df1671a8a0c9c6eb719af92651dc5a9a860064597 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.10.3.tgz + version: 8.10.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.65.1 + created: "2023-05-22T05:22:40.673984363Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: e42b38994d64ee51bb32230b7b4ea5326a3233f73080f16c28cfda1076e8f0af + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.10.2.tgz + version: 8.10.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.65.1 + created: "2023-05-12T12:47:23.163531043Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 4c864b62c1fa8d6c98a2193bc305713026ca35214f80b6de15294b95667b038c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.10.1.tgz + version: 8.10.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.65.1 + created: "2023-05-09T14:56:43.180444814Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 9c749f56a170245b2486b3c167305b3ff134fc13155fae3c9f351da9592151f1 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.9.3.tgz + version: 8.9.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.65.1 + created: "2023-05-07T09:24:43.430587096Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 964b7f2ee3043ea10e7697a98f96f4428801e0047942c2576cd3a2d2ae464e06 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.9.2.tgz + version: 8.9.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.64.1 + created: "2023-04-25T17:46:32.74118018Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: a5f9a3a26035de7c06e9cb82a11a16bb7c14ea3955bee7a18387c28f030ed2d8 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.9.1.tgz + version: 8.9.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.64.0 + created: "2023-04-24T07:40:09.017121779Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: f9f5c9a74fd8bbb7b741da23fd1ea9cc2d08081fea17a040b52c09e5b4d1c89c + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.9.0.tgz + version: 8.9.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.64.0 + created: "2023-04-20T11:55:25.22025885Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: oci://registry-1.docker.io/bitnamicharts + version: 3.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 1546b4b69d4c55d8276e96ee36098b1412c27a4090ee62aaaefde3683e8e5992 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.8.0.tgz + version: 8.8.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.64.0 + created: "2023-04-19T10:10:26.611797002Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 4e512a21065479020022bb04694854cf39eded61fcb557a3154a4e1a395658b8 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.6.0.tgz + version: 8.6.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.64.0 + created: "2023-04-13T07:30:07.464679747Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: b88b72d46f72625b29f2b6fa8304877d9f8a5d2e3e964e8d63a01948190e00ef + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.5.0.tgz + version: 8.5.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.64.0 + created: "2023-04-11T09:59:43.727066625Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 8648507757491ab4b4137a18648676fcfa3c5359a6ee3be704f77517d9602b89 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.4.4.tgz + version: 8.4.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.64.0 + created: "2023-04-01T14:38:09.381763705Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 36209f03468982efaeb412c219575a0093eaeb5f1435f371f01a05cde295e99f + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.4.3.tgz + version: 8.4.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.64.0 + created: "2023-03-29T13:50:30.415806671Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 4e5c5df5d8149e37bb771813755de1c62f01754d7b17ec8137653f675d4d6e67 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.4.2.tgz + version: 8.4.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.63.0 + created: "2023-03-19T01:18:33.763439855Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 8c7852a0fb236aa551399ba455c4282d9ef94e7c9b86f97817586e54e271a2dc + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.4.1.tgz + version: 8.4.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.63.0 + created: "2023-03-17T12:06:16.116168359Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 9f41186de3c1262d979db87b5a443419c3caf37d415fff6a177be45470e13a24 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.4.0.tgz + version: 8.4.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.63.0 + created: "2023-03-07T12:41:34.115394149Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 670d218181543b904cd63d2ed06a278967113a2d6abcd8a57c45ef9eea93d828 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.12.tgz + version: 8.3.12 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.63.0 + created: "2023-03-01T12:36:50.95302669Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 3593e5265f2181e203c48097a9acc96c6523d01c341893bcb5e20850d047e591 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.11.tgz + version: 8.3.11 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.63.0 + created: "2023-02-28T14:26:38.846399826Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 52286da2880c1b5b1a3f720084b8acc3522b77b015ed1684b96706dbc48fa4b6 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.10.tgz + version: 8.3.10 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.63.0 + created: "2023-02-23T09:38:46.262334134Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 1371ca7aec72a6c680767ba7ae541217ead8ab7cacfc62c6eb974feab1b8c7ec + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.9.tgz + version: 8.3.9 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.63.0 + created: "2023-02-22T12:53:51.433919055Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 0e064b1a54e3499eb0372e97c4fecd77b2d17c69a87d4287f695c678a2d1ebb0 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.8.tgz + version: 8.3.8 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.63.0 + created: "2023-02-17T18:49:34.50259503Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 4cd751c800757e5c3b0b37167a1e6bc41949d6e563f1e39a988cc4007348d48c + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.7.tgz + version: 8.3.7 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.63.0 + created: "2023-02-16T12:44:29.220816465Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 994090efccc43116ad0f45b985cf89dde8b9a63e592ade2f77d7183d3efc4f79 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.6.tgz + version: 8.3.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.63.0 + created: "2023-02-08T20:03:04.726381033Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 3cf2111067c860b89dae04b1a9dcaaf87787ad35d62345eaf073425756917bbe + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.5.tgz + version: 8.3.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.62.0 + created: "2023-01-05T19:46:18.839818031Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 5c95262cf48d9a684f81064af2ec7c0c2b55094f8fab504adcaebb9a654f0468 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.2.tgz + version: 8.3.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.61.1 + created: "2022-12-24T21:42:00.248272775Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 3a4489e8452c8c42a7c0553fe9c7a927c2c365a0d428072faabda79a29dd9c7d + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.1.tgz + version: 8.3.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.61.1 + created: "2022-12-20T17:20:36.588222527Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 4506d9e6e044732449a58fc70106719d6098c3e200733005e509e57df236d0dd + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.3.0.tgz + version: 8.3.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.61.1 + created: "2022-11-24T21:31:20.294086522Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 9e5aa25e3db47692d671ca19241ee4aff5d5424d103aa365f874ae4a8b93f7fc + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.2.2.tgz + version: 8.2.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.61.0 + created: "2022-11-21T20:19:50.615663719Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: cf5e0477b6cde04b3a27a111a4b80a4bd4034521ae9953139ad7e1c9fa06250a + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.2.1.tgz + version: 8.2.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.60.1 + created: "2022-11-18T11:25:38.513800897Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 3c0aa736637820088f988a1d44bc5cc4ca06f7a07536e8f6460ca2c32888f574 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.2.0.tgz + version: 8.2.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.60.1 + created: "2022-11-10T12:30:59.567003038Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: 9df0ae8c08f5480e6b10104be67992ed6b6bdfc8cab7500d5b9634b9ea0d9d5e + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.12.tgz + version: 8.1.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.60.1 + created: "2022-10-11T13:26:27.121026886Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:45469a533db91656bd01729177d8a1654f185e556bb5560e0062afcac7b276c4 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.11.tgz + version: 8.1.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.60.0 + created: "2022-10-07T13:22:59.247507809Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:186d6911b07d3913e8212d4b9ec0233e50530637b869453a7322e2c4a9b55560 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.10.tgz + version: 8.1.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.59.2 + created: "2022-09-20T18:35:00.61390195Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:8b092b2fd96c47fcf1342d518c7956294a5c79fd7dd2a87d64b60434bf986bbc + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.9.tgz + version: 8.1.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.59.1 + created: "2022-09-20T09:52:45.90603643Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:fe0794946c6e942c132f3fb5a8e5adaf3b8318430713392cfbc1dd7d037036c4 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.8.tgz + version: 8.1.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.59.1 + created: "2022-09-14T14:43:59.796879681Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:090c13172ac6eaffa1c56a47227d2fedaf0b44ada178fd0bd444f76d58660136 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.7.tgz + version: 8.1.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.59.0 + created: "2022-09-13T14:29:48.067779393Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:89e3ae9fab44e0dbde1071323d08dfa42d53e51516b5f967c71e0ffce79a97f2 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.6.tgz + version: 8.1.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.59.0 + created: "2022-09-04T06:09:00.600219316Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:167818fb2fbb28b46824c7b644f6a11e489185806b495f5927b3a6fb44d2d401 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.5.tgz + version: 8.1.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-09-02T11:09:40.1832727Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:277e86c38a32e9280850efc69dece3cd99046d3c80772d91071c6a172e4897f8 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.4.tgz + version: 8.1.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-08-31T13:21:22.317742451Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:1220d9fe754bd7a4677ce4c52f1ffbe3fd8ba135de4c20eefd9120989c853011 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.3.tgz + version: 8.1.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-08-24T01:17:44.416391153Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:fb9420314377b4526187f79fb8944bc143021136eb1bf1a56496b602630f84c6 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.2.tgz + version: 8.1.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-08-23T00:20:24.602220747Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:25962bb023543752dcd89e66f16f41ffb6840dbc7cc831651986562523a6625a + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.1.1.tgz + version: 8.1.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-08-16T08:34:54.647354213Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:048f350b03e908f32f301c2a7762fd7b731407c4bc9f59999f9ddcafcb62d809 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.16.tgz + version: 8.0.16 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-08-09T14:59:20.985518105Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:56d161b8ac6df7be806323ed778e10bdebe4da9883d6fd2095ae7a17478987d0 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.15.tgz + version: 8.0.15 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-08-04T23:01:47.097295406Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:dc8eff2c0544c2a4851f3a099440a33850443aaa7e97e8c0b66d6f079535ab8c + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.14.tgz + version: 8.0.14 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-08-04T08:38:10.150739675Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:964dce7b61c29569e3ad0e076521d7dae9ce4f3138e09439443f9375fc2d3936 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.13.tgz + version: 8.0.13 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-08-02T09:16:28.245664833Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:9625d211b822ccf0d8ad1e976f95d2b3b1c885b74bdb489d0c8ad9994ffb291f + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus-operator + - https://github.com/bitnami/containers/tree/main/bitnami/prometheus + - https://github.com/bitnami/containers/tree/main/bitnami/alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.12.tgz + version: 8.0.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-07-25T14:35:04.493428435Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:f7e17960eebd32c78f2f45fbcbe4990b9cd6002e41b23c376f24222f0d62d7ef + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/bitnami-docker-prometheus-operator + - https://github.com/bitnami/bitnami-docker-prometheus + - https://github.com/bitnami/bitnami-docker-alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.11.tgz + version: 8.0.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.58.0 + created: "2022-07-20T17:34:08.875937841Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:52ba21bf65ec18dfa6622325b96fcfb279257aed6d18370ee34b9560cf693d71 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/bitnami-docker-prometheus-operator + - https://github.com/bitnami/bitnami-docker-prometheus + - https://github.com/bitnami/bitnami-docker-alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.10.tgz + version: 8.0.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.57.0 + created: "2022-07-01T19:29:50.646393164Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:a6330a59a23adef7a721b9ca9ff78ee2826cac927cf851088abef448371f3f9a + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/bitnami-docker-prometheus-operator + - https://github.com/bitnami/bitnami-docker-prometheus + - https://github.com/bitnami/bitnami-docker-alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.9.tgz + version: 8.0.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.57.0 + created: "2022-06-24T18:09:59.357448744Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:17609c987b6e74ee7e54346913f1a4e69ffcff2b6ceafeca83ca1ba328866e21 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/bitnami-docker-prometheus-operator + - https://github.com/bitnami/bitnami-docker-prometheus + - https://github.com/bitnami/bitnami-docker-alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.8.tgz + version: 8.0.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.57.0 + created: "2022-06-14T12:36:43.454547494Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:507da6fd99df5ef445f37456cf3b9ed627f99c292bde8c6feebb1f1a42a8b960 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/bitnami-docker-prometheus-operator + - https://github.com/bitnami/bitnami-docker-prometheus + - https://github.com/bitnami/bitnami-docker-alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.7.tgz + version: 8.0.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.57.0 + created: "2022-06-10T15:43:39.938223859Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:1051c04d5958ea7bcc66d84e43a98b99336f044e2b3d818afc291bd1ad8d6da1 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/bitnami-docker-prometheus-operator + - https://github.com/bitnami/bitnami-docker-prometheus + - https://github.com/bitnami/bitnami-docker-alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.6.tgz + version: 8.0.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.57.0 + created: "2022-06-08T19:12:45.022498052Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:a4b6d3d6d4978f8e9e2421e552b840fdc845520ddffac244b0a8032586ffbe3d + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/bitnami-docker-prometheus-operator + - https://github.com/bitnami/bitnami-docker-prometheus + - https://github.com/bitnami/bitnami-docker-alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.5.tgz + version: 8.0.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.56.3 + created: "2022-06-08T10:08:58.323836636Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:cc7288c9050bb3c01d8c72499108ffaf3dac4e65104daf01cee44609604e260c + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/bitnami-docker-prometheus-operator + - https://github.com/bitnami/bitnami-docker-prometheus + - https://github.com/bitnami/bitnami-docker-alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.4.tgz + version: 8.0.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 0.56.3 + created: "2022-06-03T02:35:01.491871603Z" + dependencies: + - condition: exporters.enabled,exporters.node-exporter.enabled + name: node-exporter + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - condition: exporters.enabled,exporters.kube-state-metrics.enabled + name: kube-state-metrics + repository: https://charts.bitnami.com/bitnami + version: 3.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Prometheus Operator provides easy monitoring definitions for Kubernetes + services and deployment and management of Prometheus instances. + digest: sha256:ca978f70b7f82a4b7b09e0c420be42e6e0cf8f0930eef2b49a17a6dde31e9067 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus + icon: https://bitnami.com/assets/stacks/prometheus-operator/img/prometheus-operator-stack-220x234.png + keywords: + - prometheus + - alertmanager + - operator + - monitoring + kubeVersion: '>= 1.16.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-prometheus + sources: + - https://github.com/bitnami/bitnami-docker-prometheus-operator + - https://github.com/bitnami/bitnami-docker-prometheus + - https://github.com/bitnami/bitnami-docker-alertmanager + - https://github.com/prometheus-operator/kube-prometheus + urls: + - https://charts.bitnami.com/bitnami/kube-prometheus-8.0.1.tgz + version: 8.0.1 + kube-state-metrics: + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.13.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2024-08-07T04:57:27.308412141Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: c9247c6cd67a0576eedb495ef86cca2e68718ccb1c56822f7c6e59f077e58753 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.12.tgz + version: 4.2.12 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.13.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2024-07-25T05:56:10.960771635Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 9c1bfb5434755722d56468e80898a1a8c8ba64a7d690b3707e8acaf1e34983b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.11.tgz + version: 4.2.11 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.13.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2024-07-24T06:33:20.192084413Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 4b97e6e5b31926408552381589b4153ffa985037d20d3a797f50224b6130fde8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.10.tgz + version: 4.2.10 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.13.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.13.0 + created: "2024-07-19T20:01:39.28555054Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 2cb082e95f6f9bddeb822b801d1d16d96ab8b1b15f4c35ae0c2d3f6a8facce67 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.9.tgz + version: 4.2.9 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-07-18T14:05:46.852250231Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 73a98ca43ffd1858965225955c8c6db8e993d4d9b4671a2c7951ca2acca14fce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.8.tgz + version: 4.2.8 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-07-04T19:40:02.220623916Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 53c79ae95d0dc789137d9eeedb914daff663cac5c2339c20c63c12a3304af37f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.7.tgz + version: 4.2.7 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-07-03T03:04:42.577746306Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: d78182db9701963eeb10179f605476215ad90acc2f60a30cdc84468788000885 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.6.tgz + version: 4.2.6 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-18T12:11:51.360592818Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 478d153da300ca12930e618c6d07eac3f4a4fd1d2e2658e01a69783edbce51f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.5.tgz + version: 4.2.5 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-17T13:16:22.29443319Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: ab544153a1d0e3539e6d3cc9fa6a2a964d5361debca5b54b2ac0b1373dc06407 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.4.tgz + version: 4.2.4 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-06T15:42:44.934636188Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 0b0dec5a56f40b63293b6a712c6935ba8b84f28260b13e17dbe9671554d955a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.3.tgz + version: 4.2.3 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-06-05T04:40:04.963504734Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: ab76527d14f2b147a99de12630a581d541ee2c58655117b96ccd48ee02352d79 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.2.tgz + version: 4.2.2 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-29T08:19:57.045840859Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: dd962a28e0a2c98a686790424f62eecb6f015b0a2677a9446a0a109960fc5a19 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.2.0.tgz + version: 4.2.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-21T16:19:35.663676626Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 582246cd25a6230c465220ec6bad8ecece9b264dcd0775824dc0c9f328ce426d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.1.1.tgz + version: 4.1.1 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-21T14:16:56.790312954Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 3f7e6ba4dd091c42caa0002dfebb95e5143fddb3903c94651e0a2b8d8e12b8dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.1.0.tgz + version: 4.1.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-18T01:43:01.636535959Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: e38066e4aab5a0ef7b1d74cfd3a300c55700366fc08cf191e98b368842bc0127 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.0.7.tgz + version: 4.0.7 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-14T05:14:22.65603327Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: e80f11ea8e19cf97cf14909d9df52db83edb7d65683aa90f2ae498c3211e74bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.0.6.tgz + version: 4.0.6 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-05-08T01:33:15.307040722Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 2782bd5d1e4a24d1dc0551a8f1c74d34cbaef66b78d59473679f413c3facaa06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.0.5.tgz + version: 4.0.5 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-04-15T13:07:24.387510202Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: f9fd8985e71be85021b1cb7911db0b7fd7b97e375ee6a2aeb7bc890aa5af13b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.0.4.tgz + version: 4.0.4 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-04-05T18:35:00.524497805Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 9ac815fc38a10bb79e4ebd68c138e3a34c0137e40e91bbb76106ab02fb3079e8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.0.3.tgz + version: 4.0.3 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-04-04T15:04:40.202315616Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: ea50a6d5d0a49b715cf4b20229c66dd78e90ed808c6883a6651660989b71bc1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.0.2.tgz + version: 4.0.2 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.12.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.12.0 + created: "2024-04-03T12:21:52.704191773Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: cfd8a549e431e3337753c38abe5d15edec17cf565b28bcccd1b7c876a9903cf8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.0.1.tgz + version: 4.0.1 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.11.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-03-18T10:13:08.693675823Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 993c07b415b3d852d6bed54537e42b89bbbdd554bab7026355e83258c8333ca3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-4.0.0.tgz + version: 4.0.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.11.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-03-13T22:24:49.431467837Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: a6d637e4b8921a21fa9904e57d6a754a225a73262353a67d11cb609ca9ce65e8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.16.2.tgz + version: 3.16.2 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-03-06T23:27:27.189130622Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 4eb9fe31bc446efa5c590716893f4a4a68f9d7340b0b8ca65a3ad6ad79cd7099 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.16.1.tgz + version: 3.16.1 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-03-06T11:26:35.363468724Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: a56c6d3c2a25744ea991f1aab2ba84331a308d4e9023a1ad6c06781dec9ff07c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.16.0.tgz + version: 3.16.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-02-29T12:46:37.450797921Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 42b661292bde75642fc901fb7eccff9e1bddedef7919d8dce48ce97857d3aade + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.15.0.tgz + version: 3.15.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-02-22T11:01:00.361416232Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 04866e785a481017996f32b2c350f400197028cfb36a62fbf84efc6fa127c180 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.14.2.tgz + version: 3.14.2 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-02-15T12:32:11.652033182Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 9a1ed65e31ce0b0eb7ad3e47878b6b87f70b7e311949470b286afca044956584 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.13.0.tgz + version: 3.13.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-02-08T00:40:36.85593966Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: eb44e46d7de7751b39d73c72dcb24b11c9958d9a0836268362b6ae58f67159c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.12.3.tgz + version: 3.12.3 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-02-07T11:16:48.530566579Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: e2169fea849bf533d24b88310719e4159f5f96498f63c90a3ad0805e602136e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.12.2.tgz + version: 3.12.2 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-02-06T08:40:28.248748375Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 4ab4cf6d6a9048a10b7ea75667d03a226c881530d4b942aea9ed227d2b37ba57 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.12.1.tgz + version: 3.12.1 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-02-05T15:15:14.02326102Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 971ab5b0aaea1026a3ea891cacdd52550df9dade3ea8bb95730f8e0c38c966a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.12.0.tgz + version: 3.12.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-02-03T00:11:22.631068018Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 061e3ec9a2c4efb2661a824d0c24e197b680ecccb065aed2dc9e96f3c94d9de1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.11.4.tgz + version: 3.11.4 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-01-30T15:15:49.934480984Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 5a9b4b631824a37efb2b87a6cc787e18834e6a10c4f44eabe82a93482360366a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.11.3.tgz + version: 3.11.3 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-01-27T02:20:14.035598025Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: f51b7c487c68fa34ce8b44f1f8242fb7e3a85ad8c15a1c891e9c886c423a52a1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.11.2.tgz + version: 3.11.2 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-01-26T11:12:08.450459848Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 693f92865c19601d34ac706f8a09d520ceb5537f4ce088de6bff6f5e51739e36 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.11.1.tgz + version: 3.11.1 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-01-22T13:31:31.395273119Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 3501a604bafc86446fcc2964a502406e2fc5a147692d01350214cc68798564d8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.11.0.tgz + version: 3.11.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-01-18T06:26:39.659105219Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 132a037bb54ab5a87c004a5e74ac7d3f84ff1e954be2f8b6d6c6552255b0584b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.10.1.tgz + version: 3.10.1 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-01-17T08:56:52.755032453Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 34e33136a8ad1c6051843b91c3c50aa40ca69be4323810ccbac91e7c0a274adc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.10.0.tgz + version: 3.10.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-01-10T14:53:56.633015156Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 60e3e3475ee8168c844e1c6aa35ed8a9f76200dbcacad11ed64d1c3a1154740e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.9.1.tgz + version: 3.9.1 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2024-01-09T15:52:56.683781996Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: b65e224abcf498464b3a3813c1a2ea07239f332199904190e735b99b0be7cada + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.9.0.tgz + version: 3.9.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2023-12-07T12:00:08.481564199Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 751c9e9cb1a25fa4eccd427494a3c3d03f9eec8cdd060cf91553455b7bc2cc22 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.8.6.tgz + version: 3.8.6 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2023-12-05T12:49:21.899379459Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 94e0c95502c3e7c18db3e76e71501b3406943116ded2282c7c3f253fc19a8a9c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.8.5.tgz + version: 3.8.5 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2023-11-21T18:33:19.059070584Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 51460a56eb7417f0201446325c62e51bb449cf02687b034d56bf81c46354de89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.8.4.tgz + version: 3.8.4 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.1 + created: "2023-11-09T20:16:45.572114796Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: ef5396eb7d49de1a9f5adc1d043fb3fc6c53bd08e84e67e4453a40fa07176ff5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.8.3.tgz + version: 3.8.3 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.0-debian-11-r35 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-11-08T23:15:30.428345999Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 5ab2024b82310ebb2ef8bb865a602842a8f7b907a39622316f654165b0ae23a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.8.2.tgz + version: 3.8.2 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.0-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-11-08T16:31:07.112271857Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 5e6fe5d34f1baea75e8be9e3c3f55d4c890b366100a25aa6a475df7d4c8ee4ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.8.1.tgz + version: 3.8.1 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.0-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-10-31T13:09:08.696243912Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 2bd3aac18e81962352ba687f3181fb67cafe86be83784666ba79475f32ce0cc2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.8.0.tgz + version: 3.8.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.0-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-10-11T07:45:22.903627468Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: a8b1896781e89b1b7898cacdfe6c460cf2e8e31b36a798b85b0f5478cdea4609 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.7.4.tgz + version: 3.7.4 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.0-debian-11-r31 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-10-04T00:27:51.779639591Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 8050c1eb8c6c51f1e99f3318564f2682db9bc1cbe21d6b63b4894fd467ffeac7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.7.3.tgz + version: 3.7.3 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.0-debian-11-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-10-02T10:54:14.015400381Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 58747681a900648156909646239b9e21426ea191ccefcb4ba2c1ed940c59fe75 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.7.2.tgz + version: 3.7.2 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.0-debian-11-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-09-30T21:46:16.532136961Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 5539ceda482246db5576d09f2cc8b71f3410ff63e7b8138910fcece1879f0a93 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.7.1.tgz + version: 3.7.1 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-09-18T14:56:36.381746776Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: ae3e59f1e52499de16cade8c4973e1a3e83633ac3cada240b88f2e8d39ea8262 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.7.0.tgz + version: 3.7.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-09-07T10:53:13.868019479Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 06fcc865fedc5f3f67474aa5609de7b6d1a32fe6fb17c22b9653b1d538a9550c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.6.2.tgz + version: 3.6.2 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.10.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2023-08-31T20:56:21.340048048Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 10c7434df1b2d2b540499303a85c72b29ef1df6df2c48f202978ef01a1b0c5b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.6.1.tgz + version: 3.6.1 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.9.2-debian-11-r76 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-08-22T15:44:02.349999712Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 348c6478dcd6f48a5ce91ba2ca431b380bcf9263237e01dcdf20f4de28a1b657 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.6.0.tgz + version: 3.6.0 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.9.2-debian-11-r76 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-08-20T00:18:23.532523486Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 2d434ac1065a726dcb62301e6a3a2ed721c376553e31993a0171b5aebc38039c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.11.tgz + version: 3.5.11 + - annotations: + category: Analytics + images: | + - name: kube-state-metrics + image: docker.io/bitnami/kube-state-metrics:2.9.2-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-08-17T17:09:30.197191384Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: fe8d2c4096395d33d44f71535e965d1dd3f1dbb115cec30361344fd36ca09958 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.10.tgz + version: 3.5.10 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-07-25T17:05:30.225422721Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 22657bac556c5c6d719ab1efb7eb3bccae082f96b1e831b2364ba05ecae3925b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.9.tgz + version: 3.5.9 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-07-15T09:32:30.670327618Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: ec0c0f4c3e3dc846a76b891135d8f488ce6a443b6a1fbd9839f91c9016cffce4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.8.tgz + version: 3.5.8 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-06-22T15:29:44.18214458Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: f06fb218293da09de0e0d9c54de1eca3b7a97567a50abd73fb6f8a1f6044b661 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.7.tgz + version: 3.5.7 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-06-21T10:52:43.464783657Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 66406d0274f83227e646d6f4dc67c389f7f4e511225ac2ce252b510ce94cfc29 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.6.tgz + version: 3.5.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-06-19T16:25:15.843729669Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: c2aae1b010ae85b8fabc290cdc5d104577444abbf786a545f2f6cff6e25af489 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.5.tgz + version: 3.5.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.2 + created: "2023-05-31T13:47:35.495392817Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 21427bf59c1f5ee651e527379442634e10e838a0918fb1ad39a4cce49785ddcc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.4.tgz + version: 3.5.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.1 + created: "2023-05-29T01:40:30.086049404Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: be9c7d804c30c418656a35c4f3656e40285d088a8ceec25276f8c083ecef2681 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.3.tgz + version: 3.5.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-05-26T17:12:39.413078113Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 4c7c0541b8a0e5806aa21d53af6dd83b2968ee4258c628fa6d333e69fb9fe0e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.2.tgz + version: 3.5.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-05-21T17:08:21.458747998Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 833908a54173ca6c733689fca860b75092a11b21bedf8d919afb6ac1a52a1a04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.5.1.tgz + version: 3.5.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-05-09T15:51:03.702837818Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: eea6d5ebb201eb32f1547fe301ff856948826bed724c0672fcacf3ac4a29057b + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.4.2.tgz + version: 3.4.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-05-01T12:56:35.059525401Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: c45dc846c37dc809e99113e01b84199619f415096a186587c90ef5e1a237c9e1 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.4.1.tgz + version: 3.4.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-04-20T09:15:56.134034308Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: e7d2f1a43ec826a7cb3f19827639523dd1e239612e0754308741edc6502bd1fc + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.4.0.tgz + version: 3.4.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-04-01T12:59:14.228714084Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: c5dda3bbaadc98eb722ac07cb52b2742c2125f09906be1975560cfae11ffa582 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.3.5.tgz + version: 3.3.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.2 + created: "2023-03-22T05:18:19.360277273Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 2f66c272ddf7eb3ab07260031e420818c2452eea02d9fc644cba21be9eb09e9a + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.3.4.tgz + version: 3.3.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-03-01T10:08:57.365907082Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: a9bf2c81429b1a7d862bcc102eef3672ffad594f2055a89477094d1f0c2b1128 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.3.3.tgz + version: 3.3.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.1 + created: "2023-02-22T19:55:59.290102638Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 09341555b724e5e9811e037d8ec489338a43020b8d346212135ff4b3ba2bbcf3 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.3.2.tgz + version: 3.3.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-02-17T15:50:35.252035535Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 536030b5afa2e1fe16a3769caebfc57ebced16051e13b26af67b3da3fd616a72 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.3.1.tgz + version: 3.3.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-02-17T12:28:47.373855057Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 744c43aed1d91c5351fc1efd6a74b0ec730fa26aedb184c5dfdc8201d38dd00a + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.3.0.tgz + version: 3.3.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-02-13T20:27:08.275362806Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 72408491456b98a42b56c61e64e025662101faf56291601ff3165d2563939ced + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.2.9.tgz + version: 3.2.9 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-01-28T18:11:04.882622176Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: f5eb0eb3def5ee0e8fa238da533c8e6718d63b70a36c089aeef8b0951a8e925f + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.2.8.tgz + version: 3.2.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.7.0 + created: "2022-12-29T17:55:53.659098452Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 1c9ecc5e4645d72730cd65f1840bbe3b07f9e65a18fab12338cca967b2198f03 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.2.7.tgz + version: 3.2.7 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.7.0 + created: "2022-11-29T17:51:15.245822617Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: 725c450e9e9e3ebcfcf0714de9220517aa9ef45d107e370acf636459ac7e7a41 + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.2.6.tgz + version: 3.2.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-11-04T16:33:53.217853154Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:a258e5530c82c2a97d953ea1a045c12d3aa42cf76eb1920457178fa0fec6da3b + home: https://github.com/bitnami/charts/tree/main/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.2.5.tgz + version: 3.2.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-10-05T15:55:10.245993819Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:3ee72346ae62b33a91b8a84a4b498a955d49df7b0c5cc50555d40797e4a66665 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.2.4.tgz + version: 3.2.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-09-23T11:10:28.546774438Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:c8a7d035b270a7538bde976ce3a462d165cd52c3a5c2e65ef466fbb1c76bb92c + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.2.3.tgz + version: 3.2.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-09-05T15:28:55.646666562Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:062925561371f4b49858042e8419a63df8530d47fb0ec0df8e199e38b06b59dc + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.2.2.tgz + version: 3.2.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-08-23T22:47:34.416739813Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:c342688d5b647589fdd862a20c52d25dd2b78713ce7242294d1e22fdf846f134 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.2.1.tgz + version: 3.2.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-08-22T16:50:32.515699183Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:5eeaa8fec17de36da1e0813e7c7634943fd5b976a4e00e6e887222b587386d7f + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.2.0.tgz + version: 3.2.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-08-09T06:17:54.560974797Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:0b815487212af194145f2e838920ee518b14d709393935f5b5069a8d02a8a8fb + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.1.6.tgz + version: 3.1.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-08-04T21:53:47.35154265Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:f0d9eb14de07c5707a29cdf2fcad35d71c37e2bfd35059dac6a95897be8e5cd0 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.1.5.tgz + version: 3.1.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-08-03T09:53:07.402701246Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:8db118e725c1627003a1dfefd19bde3541d69531d0cbbbdf5f6d27b5efe6842a + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.1.4.tgz + version: 3.1.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-08-02T10:02:48.759460087Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:a44081d6852ed7d65828f6cbaeb0c908ebeeae1421131598e3189e490f855c41 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.1.3.tgz + version: 3.1.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-07-30T11:38:01.43116507Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:658ffc869cc1817a489eb3adbe6d5c35ba4cf2e0482b7b85a1a57360b5213e0e + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.1.2.tgz + version: 3.1.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-07-01T07:13:09.72428552Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:c59efe4ef357b03c0f74d5be41926ffc71609df8d2535a398de267a373b13eba + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/bitnami-docker-kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.1.1.tgz + version: 3.1.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-06-14T17:43:21.924367333Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:81112d87ca23972946c1c77c012a02c7fbd5d93bf704498b45ae4a6bc2ac3c71 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/bitnami-docker-kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.1.0.tgz + version: 3.1.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-06-10T16:09:43.811443467Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:496364f7266a214951953a54a90084954f84933e7fe702973c9cf0cf895249c0 + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/bitnami-docker-kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.0.5.tgz + version: 3.0.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-06-08T10:32:09.459911367Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:b1ba2488bf2c010d73a67725be37889dbf613c22b21735ddf7602523a3a90dcc + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/bitnami-docker-kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.0.4.tgz + version: 3.0.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-06-04T00:21:53.934773068Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:511af894766e11399bdb7fec73cc5fe3665f6eb47cdc9fbbfefade75080d0b3e + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/bitnami-docker-kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.0.3.tgz + version: 3.0.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 2.4.2 + created: "2022-06-01T16:21:23.222711677Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: kube-state-metrics is a simple service that listens to the Kubernetes + API server and generates metrics about the state of the objects. + digest: sha256:eab42708e751626253ec8bfd49df8f5ccb26ccbb009b698fc6df17eed525268b + home: https://github.com/bitnami/charts/tree/master/bitnami/kube-state-metrics + icon: https://bitnami.com/assets/stacks/kube-state-metrics/img/kube-state-metrics-stack-220x234.png + keywords: + - prometheus + - kube-state-metrics + - monitoring + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kube-state-metrics + sources: + - https://github.com/bitnami/bitnami-docker-kube-state-metrics + - https://github.com/kubernetes/kube-state-metrics + urls: + - https://charts.bitnami.com/bitnami/kube-state-metrics-3.0.2.tgz + version: 3.0.2 + kubeapps: + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.11.0-debian-12-r2 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.11.0-debian-12-r2 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.11.0-debian-12-r2 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.11.0-debian-12-r2 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.11.0-debian-12-r2 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.11.0-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r4 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-08-13T10:38:04.587365682Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 12ab029e678413aa15a535bf595845bd4d55b9ef560a649a0758fb0fb48dcb05 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-16.0.0.tgz + version: 16.0.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.11.0-debian-12-r2 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.11.0-debian-12-r2 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.11.0-debian-12-r2 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.11.0-debian-12-r2 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.11.0-debian-12-r2 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.11.0-debian-12-r2 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r4 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-25T06:41:34.406277177Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 23fdebdaf25e0e4e9c55acc74e14bd328ec2d80932acf4419d82ce3b7e724e8d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.10.tgz + version: 15.3.10 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.11.0-debian-12-r1 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.11.0-debian-12-r1 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.11.0-debian-12-r1 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.11.0-debian-12-r1 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.11.0-debian-12-r1 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.11.0-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-24T06:29:34.306098097Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: fa41cbae04b03130c7d6f2085e8ed5fa8d7472d875016b5e740ccd528b3dbc3b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.9.tgz + version: 15.3.9 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.11.0-debian-12-r0 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.11.0-debian-12-r0 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.11.0-debian-12-r0 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.11.0-debian-12-r0 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.11.0-debian-12-r0 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.11.0-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.11.0 + created: "2024-07-23T15:08:25.91265305Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: dcbf84c94ef0972e0ed06a6764dee4a0a64897e8003dd171aff60542d7d56bda + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.8.tgz + version: 15.3.8 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r8 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r6 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r6 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r6 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r6 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-07-18T11:13:03.471162109Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: b5ba2a3a61d1bc1dd5b7e2ea023d01a4eead4c149dd1702d0644eea5e31f5c88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.7.tgz + version: 15.3.7 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r8 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r6 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r6 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r6 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r6 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r6 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r3 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-07-03T07:52:00.248893001Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: bd711882c3c425a04f47a984347ff44620a663bde71a4e212ac7914f2d77bb94 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.6.tgz + version: 15.3.6 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r6 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r5 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r5 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r5 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r5 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-06-19T07:10:59.484498308Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 2f9dd3f08e701f13a63365fd322ea3acf5bb7e9f644a0818ce713b70b79318d4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.5.tgz + version: 15.3.5 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r6 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r5 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r5 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r5 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r5 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-06-18T12:16:13.390181983Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 54eae8951deaf6b35cec9a89fba828bfb175fb0575f00a06a2df6027372e3923 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.4.tgz + version: 15.3.4 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r6 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r5 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r5 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r5 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r5 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r1 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-06-17T14:22:36.805917285Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 36178285702600057c7c95c81bfcf62b27c9f82c718ca739f74ee07a73074cd4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.3.tgz + version: 15.3.3 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r6 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r5 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r5 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r5 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r5 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-06-07T05:41:19.075740628Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 3959cbebe2ac9a3e41706da3177010c7278ab1504d3d6208941239ee18133419 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.2.tgz + version: 15.3.2 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r6 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r5 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r5 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r5 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r5 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r5 + - name: nginx + image: docker.io/bitnami/nginx:1.27.0-debian-12-r0 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r13 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-06-06T15:56:08.034468506Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 8dd61bdab83e6519479230248796fae72ea592c43215a8b44b14c8dfd9641b37 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.1.tgz + version: 15.3.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r5 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r4 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r4 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r5 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r4 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-06-06T13:34:30.251633638Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: b9d99327a32e5aa297a8674c0e95752f031ce0df480f1a46d00c532c7c8dd25b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.3.0.tgz + version: 15.3.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r5 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r4 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r4 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r5 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r4 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-06-05T09:43:31.594683419Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 0394187ce648b5acd1387fdfb898ebd3ae75e7b447ec5a42097cc9ec0d299425 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.2.1.tgz + version: 15.2.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r5 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r4 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r4 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r5 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r4 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-06-04T10:04:38.268323896Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 6233b3866cb783899fc8eb74132ffecfd1707f8c0a85964b12c805462be38a18 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.2.0.tgz + version: 15.2.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r5 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r4 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r4 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r5 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r4 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.26.1-debian-12-r0 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-06-03T15:31:47.491142716Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: ce774a1a59baafa45b9168c30082002bf9a7ca5c9c936449a218e3a0283fde11 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.1.2.tgz + version: 15.1.2 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r5 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r4 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r4 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r4 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r4 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-05-22T06:35:16.307805167Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 9649ae27101e0dc4d73b46c8a1a4cfd43fba60592747ba9075bdcea0e86ccf82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.1.1.tgz + version: 15.1.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r5 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r4 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r4 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r4 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r4 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r4 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r1 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-05-20T16:54:08.169420193Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: c0d35a33db940884752489de3a1c0b7875f4d24e1422d7f37d95424ca1fd38b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.0.5.tgz + version: 15.0.5 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r4 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r3 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r3 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r3 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r3 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r3 + - name: nginx + image: docker.io/bitnami/nginx:1.26.0-debian-12-r0 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-05-13T15:54:12.950845187Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 4e30d6dbe6598bd968e988e75ad5f3bca47559c56250d5aff9636eb9c53e95eb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.0.4.tgz + version: 15.0.4 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r1 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r0 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r0 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r1 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r1 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r1 + - name: nginx + image: docker.io/bitnami/nginx:1.25.5-debian-12-r1 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-04-30T09:55:42.993158981Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: ede37675a63df9c7ac4e825fd26226ce94e61f1f60fbefc182595295f0a41aad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.0.3.tgz + version: 15.0.3 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.10.0-debian-12-r0 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.10.0-debian-12-r0 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.10.0-debian-12-r0 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.10.0-debian-12-r0 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.10.0-debian-12-r0 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.10.0-debian-12-r0 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.10.0 + created: "2024-04-08T16:49:06.20925056Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: b0c391867ef560b9b99d36a17a05d0d76680987be56ec068d5f22f21e1130aa7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.0.2.tgz + version: 15.0.2 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-12-r20 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-12-r19 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-12-r20 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-12-r21 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-12-r19 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-12-r19 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r7 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-04-05T17:00:37.572551351Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 0f0a0a1ad9a4a23ad00289fc7e0d8c209608384b44df389820d718e3c172720d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.0.1.tgz + version: 15.0.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-12-r19 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-12-r18 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-12-r19 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-12-r18 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-12-r17 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-12-r17 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-04-04T15:30:56.088837386Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: ee8a99aef0bfe1b3c5048c8c8b9a1624ef451c68f35f2b6ab72aee79389e7849 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-15.0.0.tgz + version: 15.0.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-12-r19 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-12-r18 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-12-r19 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-12-r18 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-12-r17 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-12-r17 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-03-13T11:07:00.638553872Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 5ea2fef1e726d3a503c7886f31d0fb8424e3ec665f650f2c3776dae8c7c19895 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.7.2.tgz + version: 14.7.2 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-12-r19 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-12-r18 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-12-r19 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-12-r18 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-12-r17 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-12-r17 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r3 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-03-08T16:30:16.831298467Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: b8ebccc2f5a41d88033aa5434c40d7e59a3d9851eca1c130451782ea25d4440b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.7.1.tgz + version: 14.7.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-12-r17 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-12-r17 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-12-r18 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-12-r18 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-12-r17 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-12-r17 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r2 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-03-06T11:32:43.834453658Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: facb8456838c20bddfaf4670b0ab73b72b6862b98d96a7483009a3be6b0b9536 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.7.0.tgz + version: 14.7.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-12-r17 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-12-r17 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-12-r18 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-12-r18 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-12-r17 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-12-r17 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r2 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-02-29T15:45:35.211344083Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: d399736214be587d13eb0e8ab2150f909433de2a5cd75ee7b97b072387f55bbf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.6.0.tgz + version: 14.6.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-12-r17 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-12-r17 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-12-r18 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-12-r18 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-12-r17 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-12-r17 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r2 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-02-23T17:17:14.275365869Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: f6891df5615efafe77460586ab1689c02c33f018a7a7385709b03301f61f9ae9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.5.2.tgz + version: 14.5.2 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-12-r17 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-12-r16 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-12-r17 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-12-r17 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-12-r16 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-12-r16 + - name: nginx + image: docker.io/bitnami/nginx:1.25.4-debian-12-r1 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.6.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-02-21T14:58:24.874503224Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: edd00604aca3683763cf58abf415e55e5296fb23db4a65234e49d010035c05e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.5.1.tgz + version: 14.5.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r20 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r19 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r20 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r12 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r16 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r22 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-02-15T13:02:54.627107881Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: d29d4de62cda771aa4accc1d0f340c290c5c449d90e526d114c6e9b9a8b43faa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.4.0.tgz + version: 14.4.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r20 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r19 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r20 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r12 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r16 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r22 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r7 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-02-03T08:28:43.898636592Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 8003a1f64b6eac01d3ad1622ad2cf0a60f8b42ac3c77f5acfba08da75e881f19 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.3.3.tgz + version: 14.3.3 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r18 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r17 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r18 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r9 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r13 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r21 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r5 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-01-27T19:58:04.393032263Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: c9f89ac8083992144c3808cf9ac8c1cdfa038f9892bd8bd901237125d989ac29 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.3.2.tgz + version: 14.3.2 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r16 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r15 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r16 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r8 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r12 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r19 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-01-22T13:28:04.368825877Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: ba224e014580ec01c69d9166d3c96a728d922565393e8743619838731edd6e3c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.3.0.tgz + version: 14.3.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r16 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r15 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r16 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r8 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r12 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r19 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r4 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-01-18T06:24:12.472184054Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 5470c36e22cf6fbc93755ef3af9f5a59094a9f395b85c819ed5da7ae85dadfa0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.2.1.tgz + version: 14.2.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r14 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r13 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r14 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r8 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r12 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r19 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2024-01-17T08:55:15.60787489Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 52801e554d45aba583ea6338b9203bb7a6f38b2ba18039635d719db1239cfdde + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.2.0.tgz + version: 14.2.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r14 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r13 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r14 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r8 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r12 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r19 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r3 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r12 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-12-31T18:31:57.494068701Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: dd3b2d4fafe6b367b058508d42d7a2054a575ff8bd897c58282a5304af48bff6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.1.3.tgz + version: 14.1.3 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r13 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r12 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r13 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r6 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r10 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r16 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r1 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-11-21T18:36:13.459198366Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: fb33ba8f1fc569c3e67146e913691864c1ad113e1878dc45a7844e7df41c6d50 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.1.2.tgz + version: 14.1.2 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r12 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r11 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r12 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r6 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r10 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r16 + - name: nginx + image: docker.io/bitnami/nginx:1.25.3-debian-11-r0 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-11-08T16:37:36.316218523Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 85770d07696790351e7a7cee1d8c2b76ea1ad95c7bd69666e1aa35e1d8e81a27 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.1.1.tgz + version: 14.1.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r10 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r10 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r10 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r4 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r9 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r11 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r46 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-11-08T14:01:20.897372939Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 8a82a2e92a2c014cc8bda53fd76e68b2aabaad8cf39c295a3046c3d187658a6e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.1.0.tgz + version: 14.1.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r10 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r10 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r10 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r4 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r9 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r11 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r46 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-10-16T14:48:41.932729411Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: eb5ba5180e23a98bf1c52ac90f1cd436cdd8c803340c39627219bb3e02054ffa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.0.2.tgz + version: 14.0.2 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r10 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r10 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r10 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r4 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r9 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r11 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r46 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-10-12T12:12:10.092153773Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 0d14fe2e1c57da163265ab2505c9bfa0372741bc66c4b8b10daf7ecb717f7f07 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.0.1.tgz + version: 14.0.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.9.0-debian-11-r7 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.9.0-debian-11-r7 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.9.0-debian-11-r7 + - name: kubeapps-oci-catalog + image: docker.io/bitnami/kubeapps-oci-catalog:2.9.0-debian-11-r4 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.9.0-debian-11-r8 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.9.0-debian-11-r11 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r45 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.5.1-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.9.0 + created: "2023-10-12T08:22:43.135669338Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 32a2a00ec6de0a37a81c3f9daa3e1a427b5969496b073e69e49ad0de1aa3fcd6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-14.0.0.tgz + version: 14.0.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.8.0-debian-11-r49 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.8.0-debian-11-r20 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.8.0-debian-11-r20 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.8.0-debian-11-r49 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.8.0-debian-11-r50 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r8 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.4.0-debian-11-r281 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-09-07T12:35:24.399070155Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 63a524b62faee85a3524a4217538c262fced54250bc12a5f627f632272a0dbfb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-13.1.1.tgz + version: 13.1.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.8.0-debian-11-r49 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.8.0-debian-11-r20 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.8.0-debian-11-r20 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.8.0-debian-11-r49 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.8.0-debian-11-r50 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r8 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.4.0-debian-11-r281 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-29T07:06:38.6970624Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 1987e66bc1dcc086c87ca07d0ae1749fe693ae7e5df190281d41d1d780899a5b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-13.1.0.tgz + version: 13.1.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.8.0-debian-11-r49 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.8.0-debian-11-r20 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.8.0-debian-11-r20 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.8.0-debian-11-r49 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.8.0-debian-11-r50 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r8 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.4.0-debian-11-r281 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-28T11:21:29.583195389Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 973d0542a2c126430a6da0dac63eeeb0f678a99d81b0baeae18ac28f26cd35ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-13.0.1.tgz + version: 13.0.1 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.8.0-debian-11-r46 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.8.0-debian-11-r17 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.8.0-debian-11-r17 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.8.0-debian-11-r46 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.8.0-debian-11-r43 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r5 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.4.0-debian-11-r278 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-28T08:38:39.203252748Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: af7ab85308fa1cde96bf29884016bd316622d8690dbebad40fd7c7773e2b03e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-13.0.0.tgz + version: 13.0.0 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.8.0-debian-11-r46 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.8.0-debian-11-r17 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.8.0-debian-11-r17 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.8.0-debian-11-r46 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.8.0-debian-11-r43 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r5 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.4.0-debian-11-r278 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-25T17:24:08.076109049Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 223de89f7103c34b964902d205373a200f1856b57625987f569e1948525b836c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.12.tgz + version: 12.4.12 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.8.0-debian-11-r44 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.8.0-debian-11-r15 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.8.0-debian-11-r15 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.8.0-debian-11-r44 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.8.0-debian-11-r41 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r2 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.4.0-debian-11-r275 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-20T00:45:26.373597048Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: d2419ecba22e18ca15285a3c8b560a31112cafc6d85cb1f15737174c906f62ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.11.tgz + version: 12.4.11 + - annotations: + category: Infrastructure + images: | + - name: kubeapps-apis + image: docker.io/bitnami/kubeapps-apis:2.8.0-debian-11-r40 + - name: kubeapps-apprepository-controller + image: docker.io/bitnami/kubeapps-apprepository-controller:2.8.0-debian-11-r13 + - name: kubeapps-asset-syncer + image: docker.io/bitnami/kubeapps-asset-syncer:2.8.0-debian-11-r13 + - name: kubeapps-pinniped-proxy + image: docker.io/bitnami/kubeapps-pinniped-proxy:2.8.0-debian-11-r40 + - name: kubeapps-dashboard + image: docker.io/bitnami/kubeapps-dashboard:2.8.0-debian-11-r37 + - name: nginx + image: docker.io/bitnami/nginx:1.25.2-debian-11-r0 + - name: oauth2-proxy + image: docker.io/bitnami/oauth2-proxy:7.4.0-debian-11-r272 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-17T11:19:44.03749611Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: bb8ab42e63c959def1069fd21a031f613987f13f3b52bcda056ebefcb6de1b00 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.10.tgz + version: 12.4.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-08-08T12:59:18.675654146Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 410a91f5cbd05aa3b515b978c83b7ad65e06efe36b398702751def1da7f6ab94 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.9.tgz + version: 12.4.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-07-25T22:02:43.94052402Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 6645a314b4352e4bd85c1d9a47d923dec64bd98796d716245a928c28de608ac0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.8.tgz + version: 12.4.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-07-13T16:29:28.809879476Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 8f839f6653b852712fcc9b1ed061ea73f20a97ed78fa6d6ef980e6f35c43e674 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.7.tgz + version: 12.4.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-07-05T07:13:42.734317301Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 734d9619f107e9e04308436a4918f23923cc3450610f34ca9a445e9afdce842f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.6.tgz + version: 12.4.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.8.0 + created: "2023-07-04T06:37:59.928750409Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 5bfbdca908245bc0b1e8184a8370ac94575dac9839b1223520fa68328d784b72 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.5.tgz + version: 12.4.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-06-20T16:56:36.739662561Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 28efe37f4b7005aaa459d2233e206fde3c397b2c367fbebd743a589a1da6600f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.4.tgz + version: 12.4.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-05-21T17:08:07.560318371Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 792713aa7eefcad520b6e4b79d6e1a795a063c6e081266f0647f432516d5ffe7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.3.tgz + version: 12.4.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-05-16T23:20:31.693849173Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 725c76242af8a77d288953bc387b9f2dc0c945136cbce7065b6ad1a8a13724f4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.2.tgz + version: 12.4.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-05-12T08:36:43.280132774Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 898ef8a15fad7907378dc9d8b726d4b69f06451368e0ba2e6b078519ecf78f27 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.4.1.tgz + version: 12.4.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-05-09T12:57:36.66356351Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 76368a0254fda8401bc4fc418b28a8374e9e017fb9a7fed899180c31d4865e85 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.3.3.tgz + version: 12.3.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-04-28T09:43:33.640576469Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: ff0a37cb48ea79a0fbe36dedfc0a6bcb8b6fe4eb64e32d495012ef5783d19f4b + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.3.2.tgz + version: 12.3.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-04-20T09:48:14.999627508Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 92c65a4106933a1f9f32a74149cf0b5f9e6829bd2d4e2b680808ce437601bf78 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.3.1.tgz + version: 12.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.7.0 + created: "2023-04-20T05:57:04.985577081Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 4cf6a2681ba325bc31e743a51017ae2d8f613d29af9e91360d589a1d47fde87f + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.10.tgz + version: 12.2.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.4 + created: "2023-04-01T13:49:36.551414277Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 5f7a68534325293338146ed7682d30398fdcbaa7ce316bcada511a92ea99db20 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.9.tgz + version: 12.2.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.4 + created: "2023-03-22T05:16:27.994610825Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 31494da9713cdaef586a0df5970096b79f624dbdc1e77e18ba29c4e341a109f1 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.8.tgz + version: 12.2.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.4 + created: "2023-03-02T12:04:27.600151885Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 8a3b3f2ee1427812c535e5a7827462a8d732070cf04757e16fba193152d2fd44 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.7.tgz + version: 12.2.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-03-01T11:54:20.194305941Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: ee0a5795e2163f26119cb98db31d840b30b4e0b106137d627ea121f9f73ee1de + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.6.tgz + version: 12.2.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-02-17T18:57:48.483339509Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 2daf8416b01600ffa326067ca014a82085277ab0f6b5faf8915f76924c4f5b87 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.5.tgz + version: 12.2.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-02-06T08:53:33.081441958Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 28c90611dabe74d4f1eb63e8286668b63f230b1353fe0d779367559a93e374e9 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.4.tgz + version: 12.2.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.3 + created: "2023-02-06T04:45:55.630191273Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: e49d7a83528dd1f65b134488723edab0708ac526a6bbb781b87ec12ac9bd9b9d + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.3.tgz + version: 12.2.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.2 + created: "2023-02-05T05:44:53.736826075Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 7cdccaa3fe00673fcc35c837e570fc8262a5cc9425c59bc912425b366fdce8a5 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.2.tgz + version: 12.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.2 + created: "2023-02-06T11:47:17.147258775Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 87d7ee64946ab3ee8541bdc1c468556f0cf78edc072f9069680ad126161b192d + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.1.tgz + version: 12.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.2 + created: "2023-01-19T13:37:46.254561516Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 5a47283c044e93284ca148d72278c1e1349aca3826df5e5536def698d41576ad + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.2.0.tgz + version: 12.2.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.6.2 + created: "2023-01-18T11:08:54.817808284Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: fecfa9b83394d41d868a19ddbb63ad152c80c0865c0cebf2e942ab4116e0b6ee + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.1.6.tgz + version: 12.1.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2023-01-06T05:17:17.744811732Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: cf6b036b858305467135276dac247a6b376d8f4c6a763bc19892eef789e8d85f + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.1.5.tgz + version: 12.1.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2023-01-04T15:19:23.622238277Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 4ba40c6165fa7824fe4a419f87158f6a5502ed8e8dda8bc2d3d94ea8f0e33119 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.1.4.tgz + version: 12.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-12-15T13:26:56.995255806Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: 9343c9193f96effbee9191199b6fdddb4735564a7b6eee03a88dffbf6cd25b6d + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.1.3.tgz + version: 12.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.2 + created: "2022-12-07T05:18:22.489048062Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: a70d71d272bafc00c70e397a133f92fe57198c4a4d4c4b489373b55db9e81306 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.1.2.tgz + version: 12.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-11-17T10:32:27.973002514Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:45cab7e61c0d6a84970634c4684ef830070dbd3a3b7cdc8738f08cd58365213e + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.1.1.tgz + version: 12.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.1 + created: "2022-11-16T08:57:17.457933743Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:31c33559516fb83278a54a5ce9cef1b70d5e421ca126836a57f8539af2aa00aa + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.1.0.tgz + version: 12.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-10-28T12:18:26.576208575Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:53af41a9a5437b756b9b3816d83c17510b37741064aa19d1cb8e1cf293d12b73 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-12.0.0.tgz + version: 12.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.6.0 + created: "2022-10-17T16:52:20.456958962Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:be5d5eb1debbc43b3b87656029e02fb5770056e09060e26928e36e5290efe072 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-11.0.1.tgz + version: 11.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-10-01T03:14:31.077853699Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:e234c160f7e5eae970f9c51b5e532729f17028a2de909b524c6ff13bcc3b3bd5 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.3.5.tgz + version: 10.3.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-09-21T17:48:41.249527351Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:96044003c0bc40c12fd2c19b70f224cbbb14316c3207b22a2c816476c9d783f9 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.3.4.tgz + version: 10.3.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.1 + created: "2022-09-01T16:34:13.288555163Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:7f3305e357192691daf8a33ab01a46da04fa5bc45ba105222fae17f445acce32 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.3.3.tgz + version: 10.3.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-08-24T00:51:45.51960075Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:42fa28b354f3faf2e4b017ca1c2ba02787de6a93804f279de671cf57048eb2f7 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.3.1.tgz + version: 10.3.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-08-22T20:56:12.200097936Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:925ddc4559ca78adf5c56b3dfd668abe43f087521f31355d031b417cdf37ec74 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.3.0.tgz + version: 10.3.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.5.0 + created: "2022-08-17T21:21:14.600036168Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:4c9caa1bd3be0d6c03506032fad29cad0be516026b4a25994ce86f8591ea5417 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.2.2.tgz + version: 10.2.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-08-17T14:46:06.821395261Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:9ada0dbda13490e8bd55b2c85ce1e39c802108d609c8318b0205812f09756995 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.2.1.tgz + version: 10.2.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-08-16T10:12:22.480056825Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:6a5aa47ebc96d8903803a06004f27a31c89ddfaeb9bbbf5cad2ede1f80d8e821 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.2.0.tgz + version: 10.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-08-11T11:39:48.060757768Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:6b3584c4f92e586593f3db6f2b65ee725d33153bbb7addee6cdf6ba9fbee35fc + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + kubeVersion: '>=1.21.0-0' + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.1.1.tgz + version: 10.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-08-09T06:32:10.711321356Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:35308245036ddfda6c7335bd2ccf3e20441aae26982e316fda9e5cd04bba109f + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.0.6.tgz + version: 10.0.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-08-05T00:49:57.088950073Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:81d0435722662305f02670fdfb8edecc8aed58013a11d8964c153d2bed5f9c88 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.0.5.tgz + version: 10.0.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-08-03T09:16:54.39202077Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:af6df8d7959213e65f0f26740f18d2e9f401f7ad82c29e7f406b95cc04b3dbc7 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.0.4.tgz + version: 10.0.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-08-02T09:28:47.800191842Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:5a024d610dc00716f6d2da17480d95670d507ffaf64f303729db09719b9bccf8 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.0.3.tgz + version: 10.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-07-28T07:48:01.399045234Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:ccf4442b958b2789d98e84793eec460b34f8c35b3ab39e748b5dc2f7b8d6fd33 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.0.2.tgz + version: 10.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-07-18T08:50:18.701311087Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:cd1d7d380ff6cb54221bf07a9507dc4acc3f83d852a3f67dcbc24d45eb4dd050 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.0.1.tgz + version: 10.0.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-07-14T00:36:56.719139549Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:778467cc06fffb81ccff70c8ae7a8966f8d44f387371b9bb09545f901ddb7a86 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-10.0.0.tgz + version: 10.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-07-01T08:02:01.207053635Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:e394cbd744e0e33de7ee71df46ca7eb805e1794ae8bb5b7816357b0f57862706 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-9.0.3.tgz + version: 9.0.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.6 + created: "2022-06-29T08:30:51.710341835Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:f98b00903e5b767adab0f047d0062a58b2be063025fc8111510ff6145c4daea3 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-9.0.2.tgz + version: 9.0.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-06-10T15:20:32.492911986Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:902f92ce8518114bffb03beed76520e06382af1b236ebe97a1422e9f6a52b4c4 + home: https://kubeapps.dev + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-8.1.11.tgz + version: 8.1.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-06-08T10:38:07.618951095Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:7f680b1be6b7757bf63a0eebb7f4d2d505b76db14f63f5a5967cfd832efd533d + home: https://kubeapps.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-8.1.10.tgz + version: 8.1.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-06-03T09:05:36.304491419Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:6d38e0127b0945b7a50df5b9adffb5211adb64d53a4e18881355338273ec8ad9 + home: https://kubeapps.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-8.1.9.tgz + version: 8.1.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-06-02T02:01:13.517977777Z" + dependencies: + - condition: packaging.flux.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.x.x + - condition: packaging.helm.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubeapps is a web-based UI for launching and managing applications + on Kubernetes. It allows users to deploy trusted applications and operators + to control users access to the cluster. + digest: sha256:a675e972f94c85914c6ffbbba8c63d1d34e16f95f71f21c5b2a9ab81632763ec + home: https://kubeapps.com + icon: https://bitnami.com/assets/stacks/kubeapps/img/kubeapps-stack-220x234.png + keywords: + - helm + - dashboard + - service catalog + - deployment + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubeapps + sources: + - https://github.com/vmware-tanzu/kubeapps + urls: + - https://charts.bitnami.com/bitnami/kubeapps-8.1.8.tgz + version: 8.1.8 + kuberay: + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r10 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r11 + - name: ray + image: docker.io/bitnami/ray:2.34.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-08-07T05:25:06.018457019Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 59182a6242fab44d6df83163ae66c2758d9a06a1255ed4c5d3d8157ed47015ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.11.tgz + version: 1.2.11 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r8 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r10 + - name: ray + image: docker.io/bitnami/ray:2.32.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-07-25T05:56:49.055169076Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: effa0a8ff0448811edc5970b499565d0d646cb76e8fe77ae78a8a8c716a4d46f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.10.tgz + version: 1.2.10 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r8 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r9 + - name: ray + image: docker.io/bitnami/ray:2.32.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-07-24T07:43:58.663791161Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 1e16b09705cf185dbeb6c079a6b221941be1f86f420fae6007d603e71a3b511f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.9.tgz + version: 1.2.9 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r7 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r8 + - name: ray + image: docker.io/bitnami/ray:2.31.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-07-16T13:20:29.480289754Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: e45bc72207b9e7b10f8b56f5e0ef44c347795ebade4124d011cddadbd0425909 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.8.tgz + version: 1.2.8 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r7 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r8 + - name: ray + image: docker.io/bitnami/ray:2.31.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-07-04T20:50:09.695279595Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 4ecf6b3132c14855c69cf3a70474b2d13bd301687b7f705e8b3e32a3bc94d5df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.7.tgz + version: 1.2.7 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r6 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r7 + - name: ray + image: docker.io/bitnami/ray:2.31.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-07-03T04:40:02.566227761Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 34602afb7876e1b839ad2be4f40bdaeceabf794412f8038e2a5eaa798cb8d56a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.6.tgz + version: 1.2.6 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r4 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r5 + - name: ray + image: docker.io/bitnami/ray:2.31.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-06-28T06:59:09.721624104Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 2cdffe873cf934ba42907acf7088869086bcf9e9818b1748f1992b4c45f277a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.5.tgz + version: 1.2.5 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r4 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r4 + - name: ray + image: docker.io/bitnami/ray:2.31.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-06-27T08:51:33.338598797Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: d6e07a032969ee889bffeaaf530abcca2d1c309b1a88463cbd49ce687f86f822 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.4.tgz + version: 1.2.4 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r3 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r3 + - name: ray + image: docker.io/bitnami/ray:2.24.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-06-18T12:14:38.904347828Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 9aa4d843be1fbdb7d8c402d1f93b29e47cc6534dc35f3506a1755623ba930fd4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.3.tgz + version: 1.2.3 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r3 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r3 + - name: ray + image: docker.io/bitnami/ray:2.24.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-06-17T13:16:05.562038442Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: f07a295c547c32e73f71ea61fd4129b7171e4e0d2b102db944e9da75df0f15ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.2.tgz + version: 1.2.2 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r3 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r3 + - name: ray + image: docker.io/bitnami/ray:2.24.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-06-06T15:32:01.673151021Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 94af3ae82c5d800b67828400e79a720af2f2010df2b690d9295d3d2122f2e884 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.1.tgz + version: 1.2.1 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r3 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r3 + - name: ray + image: docker.io/bitnami/ray:2.23.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-06-06T06:56:40.29551257Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: a74e15f3469ec6c2e6af421b89f2f2b14c859e9d30542a0ecf0165f095c245d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.2.0.tgz + version: 1.2.0 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r3 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r3 + - name: ray + image: docker.io/bitnami/ray:2.23.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-06-05T05:35:53.048221359Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: ffe82450428a769dc9852504e2eeb286aa5012bd2af432905b2354d048d12c26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.1.3.tgz + version: 1.1.3 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r2 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r2 + - name: ray + image: docker.io/bitnami/ray:2.22.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-05-22T10:20:16.622450025Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 30f43596f36ff4665d0ff30df0ad99630fd079d2d0c4b49a47d4c892d2cc016c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.1.1.tgz + version: 1.1.1 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r2 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r2 + - name: ray + image: docker.io/bitnami/ray:2.22.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-05-21T14:17:24.072848211Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 4681295bf317b82edf3468c40f5e4071ce106d8501e70e787d0f8cb132fd750c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.1.0.tgz + version: 1.1.0 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r2 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r2 + - name: ray + image: docker.io/bitnami/ray:2.22.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-05-18T01:44:22.530628154Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: ec01c09cf3594ad7058680b8089540ab028d509c40eb1eb962403dd8b9904de4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.0.4.tgz + version: 1.0.4 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r2 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r2 + - name: ray + image: docker.io/bitnami/ray:2.21.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-05-14T05:16:01.698794573Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: e27771057792a993921a79902df1599494aa03f8b0b7081452440bb47597ad3e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.0.3.tgz + version: 1.0.3 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.1-debian-12-r1 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.1-debian-12-r1 + - name: ray + image: docker.io/bitnami/ray:2.20.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.1 + created: "2024-05-08T08:05:44.2304497Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 3f7694b41c6437eaed1cf258e38ba052329ac8e54860815c4c23bc5c2b0b1dc0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.0.2.tgz + version: 1.0.2 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.1.0-debian-12-r2 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.1.0-debian-12-r2 + - name: ray + image: docker.io/bitnami/ray:2.10.0-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2024-04-17T16:58:52.224368354Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 3fd9f86bbc2efca6a15c5f579ca88805b407a640e24028758e608de41dac2f58 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.0.1.tgz + version: 1.0.1 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-12-r12 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-12-r15 + - name: ray + image: docker.io/bitnami/ray:2.9.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-03-12T10:28:35.242122096Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: e83c599b21fe526237e1d039c73091d42095a6742f2f1a8aa419585a4735dc5b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-12-r12 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-12-r15 + - name: ray + image: docker.io/bitnami/ray:2.9.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-03-12T07:19:54.716806339Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 54851ec93ce58cef277f1525d5ece48cdd53e250f6d6ed8c4dccbc026c43df04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.8.2.tgz + version: 0.8.2 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-12-r12 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-12-r15 + - name: ray + image: docker.io/bitnami/ray:2.9.3-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-03-06T19:47:19.221359324Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 8714f540dcbb4169504e00c003c94200dfce01fd0c280e80c7c92cd98c339d8a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.8.1.tgz + version: 0.8.1 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-12-r11 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-12-r14 + - name: ray + image: docker.io/bitnami/ray:2.9.2-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-03-06T10:58:31.363173202Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: d3e8434c9c948e0fe581898954690aea789b10c83a1ae586ccac1994e8cd80ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.8.0.tgz + version: 0.8.0 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-12-r11 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-12-r14 + - name: ray + image: docker.io/bitnami/ray:2.9.2-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-02-29T11:01:01.398144879Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: e1d781daa64ce18c058d4d1d93bd8c0a65e6c758357564180b2535914e82764f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.7.0.tgz + version: 0.7.0 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-12-r11 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-12-r14 + - name: ray + image: docker.io/bitnami/ray:2.9.2-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-02-22T11:16:58.042286157Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 25fba3885f85713bf72d8b9446f3f6d9df3b965a43b960c56d71a8130722b717 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.6.2.tgz + version: 0.6.2 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-12-r10 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-12-r13 + - name: ray + image: docker.io/bitnami/ray:2.9.2-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-02-21T16:28:20.626927781Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 0a9581e5316f20d355926ed67c653350dbc3250a0f8889c1b694fdb5f3e427f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.6.1.tgz + version: 0.6.1 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r7 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r10 + - name: ray + image: docker.io/bitnami/ray:2.9.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-02-15T11:31:55.714204555Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 1da4ee13dd0e58be11a4c1a801592d7b30c22752f504bc5c6ca7a68740e286b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.5.0.tgz + version: 0.5.0 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r7 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r10 + - name: ray + image: docker.io/bitnami/ray:2.9.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-02-08T02:32:39.883534892Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 4b3f153c4459f0b4d28af6c4245a0257f8f051eb67491f19cd3b75aabf962f16 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.4.2.tgz + version: 0.4.2 + - annotations: + category: Infrastructure + images: | + - k + - u + - b + - e + - r + - a + - y + - '-' + - o + - p + - e + - r + - a + - t + - o + - r + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-02-07T11:11:32.337456576Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 2a3df184888cc1375152347a35893974ddc345cb0691c416af50094e07996c8e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.4.1.tgz + version: 0.4.1 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r6 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r8 + - name: ray + image: docker.io/bitnami/ray:2.9.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-02-06T08:32:34.291974484Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 4ab91cfc64e6c4094d1688d3660f9c3e53cbfefc85defc325b5f5b5b60b1a67b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.4.0.tgz + version: 0.4.0 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r6 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r8 + - name: ray + image: docker.io/bitnami/ray:2.9.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-02-03T00:12:50.9257305Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 962607ca8b0061b5a5bd9fb3db4d5b13d44fa66528c7401546ef8ae61b2aad53 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.3.4.tgz + version: 0.3.4 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r5 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r7 + - name: ray + image: docker.io/bitnami/ray:2.9.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-01-30T16:25:30.580835864Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: b4476c0221fe6138aa89c5254f88ce2953f4509ad9e714027ca9eb8454316fb2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.3.3.tgz + version: 0.3.3 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r4 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r6 + - name: ray + image: docker.io/bitnami/ray:2.9.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-01-29T17:02:49.911557499Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 3b97feeb00cf92ff0665d3c7f8302cbb5655f574bc463c5e5cf5a0bd2dc449b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.3.2.tgz + version: 0.3.2 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r2 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r4 + - name: ray + image: docker.io/bitnami/ray:2.9.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-01-22T11:04:04.600321352Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 520025245e9bb1d063203f8f617fcc1b46841236ad8d0a0264ced152adc7caf5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.3.0.tgz + version: 0.3.0 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r2 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r4 + - name: ray + image: docker.io/bitnami/ray:2.9.0-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-01-18T04:21:17.87723825Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 217d19224f19c22e80ab3e9038f0145d3a33baa9a25f2b1bb658fc9c2c807abb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.2.1.tgz + version: 0.2.1 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r2 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r4 + - name: ray + image: docker.io/bitnami/ray:2.8.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-01-16T10:28:08.490621752Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: da9c1ed2be1dcdabe477ae5a835d6d97a7a3c26fea8ff089c54e02f76db7f4a2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.2.0.tgz + version: 0.2.0 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r2 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r4 + - name: ray + image: docker.io/bitnami/ray:2.8.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2024-01-10T22:32:32.047396607Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: f932debad3f05b9be5385125c47eabb295f5987081315aea49bd36c08b5aa2e4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.1.6.tgz + version: 0.1.6 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r1 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r3 + - name: ray + image: docker.io/bitnami/ray:2.8.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2023-12-28T09:15:28.345128999Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 53d203977953717b77cc6a3963db42ac921655919af50a91b6a9cbe2674b8b2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.1.5.tgz + version: 0.1.5 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r1 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r2 + - name: ray + image: docker.io/bitnami/ray:2.8.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2023-12-20T12:34:59.37487449Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: a719d0b16079d69f02f8a8fd96c21bf4da4d97988436d2f0b497450cc47f742c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.1.4.tgz + version: 0.1.4 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r1 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r1 + - name: ray + image: docker.io/bitnami/ray:2.8.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2023-12-18T16:19:10.533881263Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: acb4bcc979c76c06ae40b183fda5dacb08626731bab8b75d96dda340918b8dd9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.1.3.tgz + version: 0.1.3 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r0 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r0 + - name: ray + image: docker.io/bitnami/ray:2.8.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2023-12-15T12:35:03.699228842Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: ca7b63a95013df7e248112f55fdaad8b46b6d2673022ec52040746b5d3d8ad5b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.1.2.tgz + version: 0.1.2 + - annotations: + category: Infrastructure + images: | + - name: kuberay-apiserver + image: docker.io/bitnami/kuberay-apiserver:1.0.0-debian-11-r0 + - name: kuberay-operator + image: docker.io/bitnami/kuberay-operator:1.0.0-debian-11-r0 + - name: ray + image: docker.io/bitnami/ray:2.8.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2023-12-15T10:56:27.77767196Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: cb5f1b92b062cf59238547aba4dd9ea2dcc0bad9b9674389931406f46867f20d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.1.1.tgz + version: 0.1.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.0.0 + created: "2023-12-14T10:55:12.511028173Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: KubeRay is a Kubernetes operator for deploying and management of + Ray applications on Kubernetes using CustomResourceDefinitions. + digest: 5f8259483756265e8223f29ffb85422c851a2101d66eb8dd9845a665ae09fbc7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png + keywords: + - ray + - machine-learning + - kuberay + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kuberay + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kuberay + urls: + - https://charts.bitnami.com/bitnami/kuberay-0.1.0.tgz + version: 0.1.0 + kubernetes-event-exporter: + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-08-07T05:46:05.924195832Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 67b790f078d7aa46bf0d5a3a2d60b559e1d7f59c6642593b4cfe96432af3a621 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.10.tgz + version: 3.2.10 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-07-25T06:05:41.738581279Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: ca09b2ad4e53cda9efb38f43031e9c0fe33f3035e260e5e82e4d31046306e9af + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.9.tgz + version: 3.2.9 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-07-24T06:33:48.755848031Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: de77e62f723200d9d6f1deb90b5fa8d549879005353bd3de5207a76bf8e63a63 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.8.tgz + version: 3.2.8 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-07-04T21:27:45.497210097Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 595108e4c7498fef5e28b28ec2ba1ed49996941d1b6bd281e023eefa379abf57 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.7.tgz + version: 3.2.7 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-07-03T03:30:21.54223889Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: b45f7dfd6794e735b4745b6eda48e6c7877f3c1bed27822d955594abf9adebb1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.6.tgz + version: 3.2.6 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-06-18T12:11:37.63179254Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 0daf7850585bf4e788ccfb67be99ca6fdaf30f65d8d87ea04a0cebc2a268153c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.5.tgz + version: 3.2.5 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-06-17T12:53:53.921451408Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 79ca437ff8efbe44099a357156b57290c66779919923c60f5bde366a98eb9c8c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.4.tgz + version: 3.2.4 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-06-06T15:43:19.435905964Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: d44b12a87fc4b40460c56f4aa21a42de603227bbb5c2adc0b6857d1eeb38756f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.3.tgz + version: 3.2.3 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-06-05T05:41:55.622187169Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: a1c5fed883e590c90e4d1a46ba9976a079cc629c922d388e249adcb60a608eb3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.2.tgz + version: 3.2.2 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-06-04T09:45:56.194095042Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: bdfe5c498274973d225759406e5c97fd2a395a6b7f49034275b34a25dda6f09d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.1.tgz + version: 3.2.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-05-27T07:37:38.603565073Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: be0f01de8c4788bd46b4e8213344d29f662088ff3c8a01ea88720af1c558248a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.2.0.tgz + version: 3.2.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-05-23T07:38:17.416449884Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 6c95cfda5057b81434e524e9c3fa6ec008d8442e359d1e18c03cab246dbbe94b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.1.1.tgz + version: 3.1.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-05-21T14:39:27.739189744Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 24846247e9800f8871c5c2ac89b35d38dba0e1038c9a0cf2d38ddadf28e71c16 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.1.0.tgz + version: 3.1.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-05-21T12:57:55.757977965Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 2df5295d9e9214c73923b8b2f976f938acafb606e3c3aebbb3d456059c3e03ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.0.7.tgz + version: 3.0.7 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-05-18T01:47:00.821796003Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 2589df7059c0df60b516f95c57c798c1f58e61db5d477424bd6633fc7bd1a105 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.0.6.tgz + version: 3.0.6 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-05-14T05:17:56.306786706Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 144bd55400cdd1ed033aaf60821e68acc27fba3dc4ed839b1bac1b0de08c6056 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.0.5.tgz + version: 3.0.5 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-05-08T04:19:17.995867663Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 4de98293c588051c79154c7391b6e93fec8e7ab751cf98a7f9698299bb543b62 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.0.4.tgz + version: 3.0.4 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.7.0-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.7.0 + created: "2024-04-12T17:20:23.637782776Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 46f2feb018dee52c07718d7244a02fbfa71d760772927159f2a975003356257a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.0.3.tgz + version: 3.0.3 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-04-05T16:32:08.275439214Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 8f2397476d913b0d795ae90d201b1b7093947832b55e2f9c7efc57e010ee0c7b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.0.2.tgz + version: 3.0.2 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-04-04T17:47:05.344933367Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 51631a9733d487172d3945febf2d66993712c7b60b56aa0df849f4eb9fa8fa0e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.0.1.tgz + version: 3.0.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-03-18T11:37:13.766626581Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 953fe025969e4b9d17c95d83528ba947946a84ed7a398fb6eaddd162a23533b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-3.0.0.tgz + version: 3.0.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-03-06T19:58:28.78033732Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: b097c63152addb6ceff792d3e3044903bc3ac3261f905a117c8fc86d40381ed3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.17.1.tgz + version: 2.17.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-03-06T11:30:38.764977077Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 22089f61e0164c31025b0e27d5fab4160a7260ac5135bbd2dd23b306b3d274f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.17.0.tgz + version: 2.17.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-02-29T15:31:45.067987054Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 8b6767150bdf42d134219494bb7bdd72b4b69da80a3ce445a0fc066d09fcaf5d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.16.0.tgz + version: 2.16.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-02-22T11:03:11.278034208Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: d4723341cf3751ccd4e39b674917724d44343801855390d37945b2e29f4473c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.15.2.tgz + version: 2.15.2 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-12-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-02-21T16:26:15.876413294Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 731cf74c1a06f26b179429062f1539703d6b85b9dc46e9c5b4cde7049dafb947 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.15.1.tgz + version: 2.15.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-02-16T13:21:38.949845753Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 4fa70e00d6ff71eccc0e1ba735980cad629174ab8cf750c2edbf93aa3d5f23b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.14.0.tgz + version: 2.14.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-02-08T00:47:38.321906775Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: ca1e921776ed0ef54bcf94ec9dcad78c789abdc1bad70dc0e7edb3af2bc3435b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.13.2.tgz + version: 2.13.2 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-02-07T11:10:28.906252039Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 5bc62b722707820bcd04312438540e5b5ffb604b7ab758dae70d194878fb0974 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.13.1.tgz + version: 2.13.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-02-06T08:32:09.722906114Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 0dc18c1e68c0ab25c4e6e5d955308a0f1a2e2b9c903c16807d5c33150e8098aa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.13.0.tgz + version: 2.13.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-02-03T00:07:13.153523744Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: d8575769d00d095502cda91174b4f5ac502e73714c694ecc3746ca40eb272742 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.12.4.tgz + version: 2.12.4 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-01-30T15:16:46.103683979Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: bd1a0020c9577fb6448edd7776daf2b971e16a11e288b2ae735b10483752d653 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.12.3.tgz + version: 2.12.3 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-01-29T16:27:16.332262902Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 5a1d9b530e7ab6350d6c491a0f8c3adc666da1d03c2362bcf7793d83c3c22aee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.12.2.tgz + version: 2.12.2 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-01-19T09:27:21.996042664Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: d8fdfd76f102b0aa9a4f1b3bda77af05ff7dc0a931f8eb57089a6f1f3a786e83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.12.0.tgz + version: 2.12.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-01-18T08:31:26.88625229Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: b8afa9234070031c8dcfb4469affc52f1f6182c790237886c7f4e36c9a8a2b42 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.11.1.tgz + version: 2.11.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-01-16T14:55:21.576133155Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 8cee325357a862c142ac4c2c9958d29e47074fa56a7e8ff2d77b94261db65cf6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.11.0.tgz + version: 2.11.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-01-10T22:13:27.72103344Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 7b86461963a550aeb86672ae54f047b0f1bf8da8bb3010015e91c5836b202e89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.10.3.tgz + version: 2.10.3 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2024-01-10T11:34:39.426191529Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 984bf6fcd4d47035ae56747a2248b3d5970c9a52618ab75aa83dd46e9ddac0a6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.10.2.tgz + version: 2.10.2 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.1-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2023-12-14T08:46:09.891374912Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: eb0458f79b843f823eae0857c79ae69ec89e6b4a0e8e2c4e1028899268c60a53 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.10.1.tgz + version: 2.10.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2023-11-30T12:38:17.949350951Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 267dd4c9c98470bf4a4132cb81be2d7344c51ac1cfbb168c8a482439059302cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.10.0.tgz + version: 2.10.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.1 + created: "2023-11-24T10:23:22.073377628Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 1360610e09ac12c4f6bf6737ae882424f5675dbfb7b5b26ff5403b46c540aec6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.9.3.tgz + version: 2.9.3 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.6.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.0 + created: "2023-11-21T18:37:31.223020721Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 4b17aa361acd693e2c158beb547435159c34c3897b272f6d03c2102b388db001 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.9.2.tgz + version: 2.9.2 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.5.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.0 + created: "2023-11-21T10:50:10.845480955Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 5b68fe623e434482677a4e27aac9b4ec12f42a547f30f5935616a1ff6379d814 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.9.1.tgz + version: 2.9.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.5.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.0 + created: "2023-11-20T14:17:16.980652629Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 26bb247d9e4c877223ffb0b8ef3d2362c60a075e586727fa06843560afd1022b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.9.0.tgz + version: 2.9.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.5.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.0 + created: "2023-11-18T01:27:23.13127193Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: ca80926133c1ad1f2ac96e92a43c2e9cb26316604b26cf92c0568c6c896fa605 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.8.3.tgz + version: 2.8.3 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.5.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.5.0 + created: "2023-11-09T00:03:49.04136577Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 1b0cddbb6bae64a44ec244422c184cd048e55b3ff430f03d3e1efdf5fe8ee806 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.8.2.tgz + version: 2.8.2 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.5.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.5.0 + created: "2023-11-08T16:29:12.071499761Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: a2d1694fd62f495c12b6df403c26a6be39e39b82d5c1a0f10ab143871d748a8b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.8.1.tgz + version: 2.8.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.5.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.5.0 + created: "2023-10-30T09:07:48.739741457Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 2e08a2c1ab81755e911f87bc01efa9af1ee811062d642de5210c58657af0d230 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.8.0.tgz + version: 2.8.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.5.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.5.0 + created: "2023-10-25T14:47:16.144112992Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: c0084fef561e6ab4adc2f1fb95d0909297678adbca5b0869da8faa1afe27fa08 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.7.6.tgz + version: 2.7.6 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.4.0-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.4.0 + created: "2023-10-11T08:02:49.723888555Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: b62a34a28c711c59f655def68fe15bc620bc53f8e56c29f5e83c400d8e0b6631 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.7.5.tgz + version: 2.7.5 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.4.0-debian-11-r59 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.4.0 + created: "2023-10-09T19:45:27.983155521Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 6c623951544c0c45de2b2f6ed801ed845aaf4b9545e111c53383821a378b446f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.7.4.tgz + version: 2.7.4 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.4.0-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.4.0 + created: "2023-10-04T01:37:06.592047175Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: ae06eb9f8fbb48006ecdc6d678b882361a9e1750067ea11a105ac49480164434 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.7.3.tgz + version: 2.7.3 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.4.0-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.4.0 + created: "2023-09-19T01:39:44.449609152Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: b9f4616894915177d65d591f535c2940f9544f128f390caea295d16e241efd29 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.7.2.tgz + version: 2.7.2 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.4.0-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.4.0 + created: "2023-09-07T14:08:58.430940546Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: b8e9eac3425421dccb0e127c34fe7c90bef0ca6d67a1948c7edc2cceec1fda0f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.7.1.tgz + version: 2.7.1 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.4.0-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.4.0 + created: "2023-08-31T09:58:37.03010245Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 1b1be00cfdbe0ba8eb154aed7a5f7506d6d392b6b0b660642785a5a16a9d624f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.7.0.tgz + version: 2.7.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.4.0-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.4.0 + created: "2023-08-22T15:12:33.762051503Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 2c23ef9350e8062d286e60cc52741b9acc87bcffe3146cab03247fd72cd73ad3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.6.0.tgz + version: 2.6.0 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.4.0-debian-11-r14 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.4.0 + created: "2023-08-20T01:00:57.763492613Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 3f349b9357d949a5a8df6cfd9e79a8bd05a6bff3af0ecfec6193ab50e4d4ea72 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.5.3.tgz + version: 2.5.3 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.4.0-debian-11-r11 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.4.0 + created: "2023-08-17T18:17:26.131978419Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 5a90450e73fb8c8ac15d35b526fc971e3e4376ec0ea08bfff1566f9875f5aedb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.5.2.tgz + version: 2.5.2 + - annotations: + category: Infrastructure + images: | + - name: kubernetes-event-exporter + image: docker.io/bitnami/kubernetes-event-exporter:1.4.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.4.0 + created: "2023-08-04T21:07:33.746898098Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 49fb38418e6389b47635a53b457a88e8ded0bbdf60e962e4454e93e3e9ae7d93 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.5.1.tgz + version: 2.5.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2023-08-03T12:16:17.019919469Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 5d6359e68bf7e44cdfca5a1bc71176defe33e88fea7e69aac69b275f890b8098 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.5.0.tgz + version: 2.5.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.3.0 + created: "2023-07-27T16:10:15.845608533Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 342f1326abd692ae062ce71f94697be9b01352a6a16562928872dcc68eb652d4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.4.8.tgz + version: 2.4.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.0 + created: "2023-07-25T17:17:50.016268847Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 73f41b13d07f44fef0c96bcfb18a63b9c2ff7d8d74fb1d741f7c6ccd313581df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.4.7.tgz + version: 2.4.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.2.0 + created: "2023-07-21T12:08:25.022312167Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: f9a96febb66c5861af02037bb6f968fac433761b155528e43a5e3149dddb14de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.4.6.tgz + version: 2.4.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-07-15T09:49:34.538811943Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 53be2ddd8818aa50016ea0683b83d44d348650f34b765e63a7c333e40c8f98b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.4.5.tgz + version: 2.4.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-06-21T10:53:46.235574278Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: f1d45a5f219998ca23f56a3401ade2c800db7463eb6e6f6d0b498e32167c271b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.4.4.tgz + version: 2.4.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-06-20T18:14:13.826243895Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: b10b82fff24447131132b5c9e3030e2415773455b696bcde25f70688b4d3c6a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.4.3.tgz + version: 2.4.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-05-21T18:19:55.553658754Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 503e9c06dad4bbc1eb7e3c24220580cbe25cd0143e58c195fd92e7b9177ee0de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.4.2.tgz + version: 2.4.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-05-11T11:59:30.094967791Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: ed42e77eaeff99ed72f865c8eb8f11e57897174f9b9a29add92894cf0e225a00 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.4.1.tgz + version: 2.4.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-05-09T15:33:09.12942514Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: df41614fdd81f58d167977d78667033929f80708610a98c0df12083366792ca8 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.3.2.tgz + version: 2.3.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-05-01T13:15:17.694009047Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: a3e5b980ecce123d8cfcc4506f0473f6c9416a6c4f9c5437a93027a800cc02d0 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.3.1.tgz + version: 2.3.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-04-01T13:23:52.421207303Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: ab7c863bdf4752befa395a2a708c9bb154ad7d56f1ec9eacd6ebde64eef1833f + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.2.6.tgz + version: 2.2.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-03-22T05:18:01.529733573Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 8bed97295a1658425d0ba66eac6be925cdb06d3e129078cf78905e0f3458e293 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.2.5.tgz + version: 2.2.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-03-03T11:11:47.447790845Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 8e6fc39ea4302a3f955daadff2f3e5089c2dd6b974caa563585221205c900eac + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.2.4.tgz + version: 2.2.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-03-01T10:05:31.095623271Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 58d5680c67d65cee23417e02d098803361fbcf15a83e288bd17c4bac4455bb70 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.2.3.tgz + version: 2.2.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-02-17T15:56:40.11050903Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 3427a75952f984171347b3bba5497380909f81d79b62984851acaef2d6d27327 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.2.2.tgz + version: 2.2.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-02-17T10:46:16.70067977Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 2b7ec35877337371754252b5a4704807f858841ee7a73a272658eb0d3e29dd31 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-02-08T17:56:45.587354553Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 29351bd5f30a4ebcbaaa4165c11a701c636adf4527599816001a0fa508c0b9b0 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-02-08T17:44:57.091830159Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: f71405f4d6402086c3f4f28c602c0f9b18f21b511dc9fa916915478c85942e1b + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.1.7.tgz + version: 2.1.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-01-18T11:11:23.039761708Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 8bc25efb829dc30459ce8df60694eeedb5df7548abefcdf84e4c98c24aa3f545 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.1.6.tgz + version: 2.1.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.1.0 + created: "2023-01-09T13:00:46.904344557Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 1b8d67868ec835c9e0061a50a1530e0f6215592d99598cacc692282b91444c94 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.1.5.tgz + version: 2.1.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.1.0 + created: "2022-12-19T10:26:43.847962888Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: db0c12184c9e7b544404337702b96e1993aef724a0f357a07802cf6bddc42b98 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.1.4.tgz + version: 2.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.0.0 + created: "2022-12-02T19:10:31.966846132Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 4ea62c8ab85b2386b6de2a326dc330020f6830fdd0ff5cae539a30a9f3224eb5 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.1.3.tgz + version: 2.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.0.0 + created: "2022-11-24T07:24:08.126929688Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 139d49ee14a57655f557bba032c949464f6cea8c34590e2c41a49345025d6475 + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.1.2.tgz + version: 2.1.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.0.0 + created: "2022-11-02T18:57:30.145503359Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 26f175f70be8979e6caeca3defaab8ab454673b3824d3cca6fb14e577773371d + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.1.1.tgz + version: 2.1.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.0.0 + created: "2022-10-31T09:41:04.460551416Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: 33c4cde7cdb13dd75a59f9c167af083bed3612251fecfacbde2472c61454b50d + home: https://github.com/bitnami/charts/tree/main/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.0.0 + created: "2022-10-03T19:27:36.534351625Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:28637636e94f0f9d7cb14edb818bff3d8813ba7ea31c5b4b1764c62a73787910 + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-09-08T07:03:41.601798486Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:e3d87345cce127ef6ba231ec62b87936c262404ab07c90b90670ab566049f94f + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.5.2.tgz + version: 1.5.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-08-23T22:39:13.128883395Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:6517dfb844d3905aa21896fc801f77b499e08a68b58c6c85542317613e31ecce + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.5.1.tgz + version: 1.5.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-08-22T16:56:13.896786988Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:4684b18983f5aed333efd9d939fc7b745a35653e2ecf2c543e62b096f88a2b65 + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.5.0.tgz + version: 1.5.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-08-12T11:25:14.679338023Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:ee015416ee447322d4cfc03f0c53b1f6daac6305b6566d6caad4970a640128d0 + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/resmoio/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.4.21.tgz + version: 1.4.21 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-08-09T04:44:28.217828413Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:0b16dadd34be6ad0e6b2fc59fab2b58946289c27664bece4911e112755c9abce + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/opsgenie/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.4.20.tgz + version: 1.4.20 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-08-04T21:23:41.687395639Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:350ac423035d142caddcd09aca6902d407c2a514e8040f24c8e32ae14a47f167 + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/opsgenie/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.4.19.tgz + version: 1.4.19 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-08-02T09:41:36.977530344Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:7683cb58f044f3cb28a0113260a88fa44146c49704416b866f214fe09b7cc74f + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/opsgenie/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.4.18.tgz + version: 1.4.18 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-07-30T11:23:00.308744686Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:040843cc75a2969928a3b640ee67c063c39c4d36a10433c434c3a2583e1e3017 + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter + - https://github.com/opsgenie/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.4.17.tgz + version: 1.4.17 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-07-01T02:41:06.204317132Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:8475055efd28225a71cc63eac3c1e88232ccd7107d21813b45778f5c23e2ab73 + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/bitnami-docker-kubernetes-event-exporter + - https://github.com/opsgenie/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.4.16.tgz + version: 1.4.16 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-06-10T15:18:56.838055984Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:8765ed37361899e99a75f5328ce1fe2daec620b35fbb1d004be848c939770c00 + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/bitnami-docker-kubernetes-event-exporter + - https://github.com/opsgenie/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.4.15.tgz + version: 1.4.15 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-06-08T10:55:29.914332628Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:ca3cd5bc2dbfa88a3eab11b7444e24cb873d6124f2d9cc2d8962d224b416272f + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/bitnami-docker-kubernetes-event-exporter + - https://github.com/opsgenie/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.4.14.tgz + version: 1.4.14 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 0.11.0 + created: "2022-06-01T14:50:06.900235838Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Kubernetes Event Exporter makes it easy to export Kubernetes events + to other tools, thereby enabling better event observability, custom alerts and + aggregation. + digest: sha256:3f6900ad81d0eb4c6969564697b5e8b59b42af5a5d793f8412c9f58d7abaf608 + home: https://github.com/bitnami/charts/tree/master/bitnami/kubernetes-event-exporter + icon: https://bitnami.com/assets/stacks/kubernetes-event-exporter/img/kubernetes-event-exporter-stack-220x234.png + keywords: + - alerting + - event exporting + - events + - kubernetes events + - monitoring + - observability + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: kubernetes-event-exporter + sources: + - https://github.com/bitnami/bitnami-docker-kubernetes-event-exporter + - https://github.com/opsgenie/kubernetes-event-exporter + urls: + - https://charts.bitnami.com/bitnami/kubernetes-event-exporter-1.4.13.tgz + version: 1.4.13 + logstash: + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.15.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.15.0 + created: "2024-08-08T22:48:24.27210566Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 4c6f3b5a1f8752a24c5b3daca8eb4e083d7f8c71abecb45194fa98136c189576 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.3.2.tgz + version: 6.3.2 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.3-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-08-05T15:00:31.961878437Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: b1ea4023dd3f3d0fd3d1226e5227640bcf5114d82b14341981d81ee5ce96ff0b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.3.1.tgz + version: 6.3.1 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.3-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-08-01T13:47:19.115845398Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 8c6758c4ee267c1785147d56fd17e5e441d9d7d512b6fe04f990b44d08bc9325 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.3.0.tgz + version: 6.3.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.3-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-25T07:02:15.807318069Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: f1318c61745196a562c1382e33c53cb673abd44cbd4df1b7a2ca19896dfca060 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.14.tgz + version: 6.2.14 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.3-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-24T07:16:58.645362809Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 0801d704c70298c701301b4a764f79abcbd52268001201a15007d1d172759971 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.13.tgz + version: 6.2.13 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-16T11:37:39.378240794Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 74ce0f9b353868ce2ed889ebb6605bea0718cbde16c0e17b1e78e54f30f78637 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.12.tgz + version: 6.2.12 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.3 + created: "2024-07-11T16:19:29.190445242Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 60c1867e0ca9bb3b55f7fb94b93c3b55a4d3471a3aee54f6e3b72d133cf08aad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.11.tgz + version: 6.2.11 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.2 + created: "2024-07-04T19:32:45.460326802Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 85949bd8279c296b9ad3cb70dd7df5f7116e97b25b81e9aa12b3f218b73730c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.10.tgz + version: 6.2.10 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.1-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-07-03T07:53:11.492593226Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 8b320e955d70140a8fec601cfb7764b28bfc763149c3d2542741d41e1fc8d1f7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.9.tgz + version: 6.2.9 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-06-18T12:12:48.803034978Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 7ea62594aec583f86fdbe7c13b2179a9df1257146d6108783557f3747e32e015 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.8.tgz + version: 6.2.8 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-06-17T13:03:59.244085297Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: f0256ca5ad761e02952dff0158c18e1ed43f55e8a19caa092a5a10edad811267 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.7.tgz + version: 6.2.7 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.1 + created: "2024-06-12T19:53:22.513803523Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: dd8dc274570bcfd32e7d82c0a65681c5db4c638f2fedda3423d2602520fcf663 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.6.tgz + version: 6.2.6 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-12T13:15:16.952894646Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 0e000a2d60e0d3b115ebe61e84bed0130488b5031bcabbb1dae1c49cd65cfead + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.5.tgz + version: 6.2.5 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-06T15:43:02.212228314Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 604cded24901bd372a9ad1365e659e7a7e1ac08b90577c79b1babb783b234014 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.4.tgz + version: 6.2.4 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.14.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.14.0 + created: "2024-06-05T18:41:47.823309476Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: f475cda78ee5a80dee5eece9f154534d697f9f246a4cbb103ff936d933761998 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.3.tgz + version: 6.2.3 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-29T09:54:25.383513806Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 612f8acfbffb442d76a9fb9899dcb97f346ca8c42d522cc70e2485583e6f7642 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.1.tgz + version: 6.2.1 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-21T14:18:18.8870578Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: fb98867880b3847b6a9f5bee57c384e70895f2f59f364112709c06e3e0117561 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.2.0.tgz + version: 6.2.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-20T16:23:13.621590301Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 667021292098f460cb5a40298fab66708fd18f5214f473100503f046dc4975c8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.1.1.tgz + version: 6.1.1 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-20T07:07:09.839446244Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: ba994c95483f0da98b76b1e1935bde23995172af7b9124c15d960246eeb71459 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.1.0.tgz + version: 6.1.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.4-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-20T00:20:35.98293165Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 963eb5004106b4cf771f2454142a932373a83209b1a212cf88184f30f6b762c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.0.8.tgz + version: 6.0.8 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-18T04:10:10.038070333Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: df4ee0f90b2cf9c067e51fa6e78c628d27818aa5604d4ca4e286078e897ad544 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.0.7.tgz + version: 6.0.7 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.4 + created: "2024-05-14T13:04:37.410211477Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 9a1b45115844935bd389c11573e6d81a04ea53d267cdb918dfe3df7618b730ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.0.6.tgz + version: 6.0.6 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.3-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.3 + created: "2024-05-14T05:17:47.795454451Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 7e853fe5880c6949ac78a172aa5b3a39ba3f3c2e8e7bbf121cbda43489699b69 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.0.5.tgz + version: 6.0.5 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.3 + created: "2024-05-03T14:08:54.821309618Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 0ce1a0e68d2533e6f02ea14f312595de98f0abddb33af0c4c73e18a50e4ccf74 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.0.4.tgz + version: 6.0.4 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.2 + created: "2024-04-08T23:46:08.175492973Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 5b3b232cdbe363ddf607ee116a5724fc68d75164a606229e3f04088a5404abae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.0.3.tgz + version: 6.0.3 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.1 + created: "2024-04-02T13:56:27.370522451Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 37a7797c3ebb5cbfb1c7b67fb2c1e7ca07a46386fb65ea509b767924b9134a6d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.0.2.tgz + version: 6.0.2 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.13.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.13.0 + created: "2024-03-26T20:21:00.703160292Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 33565786424b766de91b81bc71fe52d190f2e42b93466a32b3694bf478094560 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.0.1.tgz + version: 6.0.1 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-13T12:38:51.603497449Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 86965cbaf52fca235e21c1348a5d475cf6e2fe35ab963e0e80c19c367faaee93 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-6.0.0.tgz + version: 6.0.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-12T15:42:15.044162227Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: ef71a3dd8b67366933d2c63f18501767442f8dab1737d5b0de24f76d8107b559 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.13.0.tgz + version: 5.13.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-03-06T09:11:19.32346146Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: e2fbe31dc2986501c0a159485feb1b141d460b371651c179e5b5e6c074968efd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.12.0.tgz + version: 5.12.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.2-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.2 + created: "2024-02-22T19:23:34.501354735Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 2befdcb45accccc0a81bbe2c833149f17a93af4b2e25ff1d1c7e0cc4dc14bf6d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.11.3.tgz + version: 5.11.3 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.1-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-22T10:59:42.27154303Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 9f29004a3de98af424e769732cd0f27aba36f9c2f76f3f8da680501aeec87cb8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.11.2.tgz + version: 5.11.2 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.1-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-21T15:27:40.987146972Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: ff56dec9f90be27b3a9c299baf9863848154f14c86cb27b2d9324b02d65079b8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.11.1.tgz + version: 5.11.1 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-09T18:00:16.267451812Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 6549ef49193e104ed6a78b05ca1efb94e07d22c53858a1bd1e0974bf79cd8a82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.10.3.tgz + version: 5.10.3 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-08T00:48:24.605186851Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 4afe86b70092e997266c93368c3ea40639ac0db92daf17e705c9561eea96b6e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.10.2.tgz + version: 5.10.2 + - annotations: + category: LogManagement + images: | + - o + - s + - '-' + - s + - h + - e + - l + - l + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.1 + created: "2024-02-07T11:10:39.334205805Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 827e4dd540a01463f8bd5bfbfc290ab9620213d6cfa83248ad1f1e14fa5b8ca7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.10.1.tgz + version: 5.10.1 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-02-05T09:50:50.082823754Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 8dd5cc4910b8e7deda3562a74a9a770da135cefaa9b7833aa89cf2e2d62f88fd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.10.0.tgz + version: 5.10.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.0-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-02-03T00:13:35.261745865Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: e3b95c763237618387c656648cb09d9a7d0f63bf7a9b9e3338184c7973afe2f6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.9.3.tgz + version: 5.9.3 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.0-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-01-30T15:13:54.662169063Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 8942380e5d3816190bfc0a59ef72301b82607b7c49a26ad17a4eb4316792ba0a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.9.2.tgz + version: 5.9.2 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-01-19T15:54:18.597007602Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 4d0e5d64d0d97ea1a14ed218892a7ef762137370fb8b869466f077ee6594e834 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.9.0.tgz + version: 5.9.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-01-19T11:35:23.083686313Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: ebaf626a3ed70893ffc92d975cdaec5b7676a11418d2f4e346de9a6666dac453 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.8.0.tgz + version: 5.8.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.12.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.12.0 + created: "2024-01-18T22:39:34.761423625Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: c6ff039c5be70bb548e358e0c70a9f85b44deaaa4d3ecec13d6ee681190a076b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.7.2.tgz + version: 5.7.2 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-18T21:56:25.764186286Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 3b71b2b21122a92ba10fd3dadd6af2e00676da2b62c11545cf1b1c2ddf32c75c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.7.1.tgz + version: 5.7.1 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-17T08:29:13.566396206Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: e5adb18f1caab558a533cd1a70452e9c22ae1e0553c27b6ec6f639a0995e067f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.7.0.tgz + version: 5.7.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-15T11:07:41.320897685Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: ae755ed4053d826e70a3af8605956cc71c18e482b6547a34dbeaaea4b9924a06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.11.tgz + version: 5.6.11 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.4 + created: "2024-01-11T20:02:56.590249584Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: a0732598f520e48afe15f27f192432478fbbd1f7218b1605481b346903e6efdd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.10.tgz + version: 5.6.10 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.3 + created: "2023-12-13T10:49:27.16911656Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 5f8369b833e7fd0fdaca130a41c8a7c3f40b27919a941dadedb3bdd3ce463fc0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.9.tgz + version: 5.6.9 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.2 + created: "2023-12-09T09:12:38.98704786Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 4817d583ef9f61d91e73b168a3589f91c9be6b0eae0c2040db9f90440b55e190 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.8.tgz + version: 5.6.8 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.1 + created: "2023-12-05T12:48:52.390250052Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 70982c0658600bf12a4b491de641a61e8a9eeade1383a7ea5b8bacb6d91d07a1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.7.tgz + version: 5.6.7 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.1 + created: "2023-11-21T18:38:36.798135747Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 147877b223c824c1e96f3fc99c0a01355b04a993eb8c060f945ff93ad60e8ae4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.6.tgz + version: 5.6.6 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.1 + created: "2023-11-15T07:33:31.490334905Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: ea9972fda2894b0ee82b041aa5842206e8a62cfa7417bfb1f5e6fc647538af12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.5.tgz + version: 5.6.5 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.1 + created: "2023-11-13T20:26:17.397048339Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: fc2ab25d372d2ada26edf40d488d0f3248c1b136a9afc7cf4e51354ef405c13d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.4.tgz + version: 5.6.4 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.0-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.0 + created: "2023-11-09T09:30:39.492988029Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 3cd35363f963d9291fe5b0f966734c744df5cdef82635f29e0f21ef6fb774537 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.3.tgz + version: 5.6.3 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.0 + created: "2023-11-09T08:52:08.71725588Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 53941a1a2b7d94c75e876b481f1a704b927db8ca1f4c94cb30729c927ff421e1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.2.tgz + version: 5.6.2 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.11.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.11.0 + created: "2023-11-07T19:09:48.086722092Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 8248b9641ca923b3f590e7ab33fd635bb8dfe129040d4783db28f479891ef0b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.1.tgz + version: 5.6.1 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.10.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.4 + created: "2023-10-31T13:08:55.753625992Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 8117fc5a100c0eb9cc008dedde10d04b600f7050fd0d4c195c409086b9a23851 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.6.0.tgz + version: 5.6.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.10.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.4 + created: "2023-10-17T16:59:08.485330254Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: d03944b62c6d44033d4651a97d604661b3703b85142ced0cd4841dbf63611bdd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.11.tgz + version: 5.5.11 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.10.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.3 + created: "2023-10-12T15:17:39.460158101Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 5ff4612085c7102d24a941f89d1fa4b6ec608cf72a21570368c0d69f8e83390e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.10.tgz + version: 5.5.10 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.10.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.3 + created: "2023-10-10T18:39:16.970538034Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 8012f8bb99bdd17b1a58c8044bea441995f4ca1f2901f601f6df34312bd00ecd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.9.tgz + version: 5.5.9 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.10.2-debian-11-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.2 + created: "2023-10-09T22:41:55.515856617Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 208491dbc4b408f7c16c31865ccc8e102d5103e7a378a9cca5aeb6394c2fda60 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.8.tgz + version: 5.5.8 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.10.2-debian-11-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.2 + created: "2023-10-09T19:54:30.713890985Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: a87de3f27683fdda504dea569980dfa682e632e7a7b89dd2c61778ad9af9753f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.7.tgz + version: 5.5.7 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.10.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.2 + created: "2023-09-21T16:28:07.898627797Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 9f9aa27bad64adb23a5d45486679b8ba8767147663a99ac4083520a87e0b215d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.6.tgz + version: 5.5.6 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.10.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.1 + created: "2023-09-18T23:41:09.434354505Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 219c49b4f216fbc28cdb2818fac5d6ebd23429509c96f47dad5304c8b195ac06 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.5.tgz + version: 5.5.5 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.10.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r66 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.10.0 + created: "2023-09-12T22:53:56.600094517Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 7f8aac876807b439a88a448c6ef7823d3f6ad52692d7477e4f3ea9a1d23ee0c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.4.tgz + version: 5.5.4 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.9.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.2 + created: "2023-09-07T15:32:27.751727079Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 93c59184e1ef4e264493b74a19136ae5f2c7946ea7feecf8fc0c3121b0fdc4d0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.3.tgz + version: 5.5.3 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.9.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r60 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.2 + created: "2023-09-07T05:15:15.166576739Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: a56ed7d1eadfc6e7f7af64a272fbae71d0e5d883a2b7b5279889a93d75121936 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.2.tgz + version: 5.5.2 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.9.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-09-04T11:59:53.303822772Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 290defec76e5e368d73c29242aee4d0617fb472a44eb69bf3f70c65e86454f56 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.1.tgz + version: 5.5.1 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.9.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-08-23T09:21:01.590870442Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: d1bfd1024885c33d21d0f04e8ba522168c8b685bbb74ef6e97fbf51176167e31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.5.0.tgz + version: 5.5.0 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.9.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-08-20T01:33:14.17588178Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 6c5518c727e02a2007a745b0f61ec0332fe53375253c08d86599d5287cf37145 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.4.10.tgz + version: 5.4.10 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.9.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.1 + created: "2023-08-17T19:59:32.242200903Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: ab79588d7b67dcedb14a31d4b6876ccefb73887df91a70006b76d093ab6fa048 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.4.9.tgz + version: 5.4.9 + - annotations: + category: LogManagement + images: | + - name: logstash + image: docker.io/bitnami/logstash:8.9.0-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.0 + created: "2023-08-17T18:20:10.35701427Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 52669596c54ab1f108f9605d09ed351066c3d898b904eb6be374100fe404b49a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.4.8.tgz + version: 5.4.8 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.9.0 + created: "2023-07-26T02:56:07.065894745Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 4a8840b55f9f285c0a985efdbad5ced713b8b9ce8d16dee2c90c3c99d56c33e6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.4.7.tgz + version: 5.4.7 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.2 + created: "2023-07-26T00:31:07.024925591Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: ced6507729db137eb6eec65a5298567d5144b93f42206d0e1a6355d64e3ab9dc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.4.6.tgz + version: 5.4.6 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.2 + created: "2023-07-15T09:45:14.200067902Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: cdbcdfbe6261ea6bd2f68d2c81b25171cb8c1b9554c562ca75b5e9c3640593ab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.4.5.tgz + version: 5.4.5 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.2 + created: "2023-07-01T10:32:55.234913216Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 491674e99cc6d958fa2a9db25a280ab1e1adab2911b4dc0161909f7d7dff4317 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.4.4.tgz + version: 5.4.4 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.1 + created: "2023-06-08T14:11:17.378322948Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 3aace350d51a77b1092851f446746d50ba840e9e61ccc298672e09b1ab2f7e4d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.4.3.tgz + version: 5.4.3 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.8.0 + created: "2023-05-25T19:06:41.57733803Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 2270b1620a5c31a4c3c70bf5339f8f55c02da6978469f2e94a981c53c3781746 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.4.2.tgz + version: 5.4.2 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-21T19:52:23.362988176Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 32f9638cf7d4432e10fa67e70fe302cfebcf90b93abfda5a90b94d47dcb3a593 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.4.1.tgz + version: 5.4.1 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-09T12:29:09.863579092Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 5c6e28aa69ba5f92884922a1c64ce731c305b18daab961b8fa168ac211444ee0 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.3.3.tgz + version: 5.3.3 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.1 + created: "2023-05-02T17:16:10.655776921Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 49846c324e435ba0e5d9b6ec634d639f42ec709c040aaa97abf7655ccc2a3523 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.3.2.tgz + version: 5.3.2 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.0 + created: "2023-05-01T14:21:07.945986276Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 09c99ef82c4936c36af05b3014f1ee55bebaaac5e11d53a0b330119a76f9f625 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.3.1.tgz + version: 5.3.1 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.7.0 + created: "2023-04-01T14:25:12.958686994Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 6cd39439c35e343a78227efacc079dbd22203fde46649d95cf37035c28a0615e + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.2.2.tgz + version: 5.2.2 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-03-22T09:06:51.764045283Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: ec196462d6ad0214d8c42df3f6b69cc6ac58590c763db6fea5296713c747ae9e + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.2.1.tgz + version: 5.2.1 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-03-21T15:41:40.435279765Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 6bbb622a7f351baad60c002df1e6260d0f48798996aec55023a0599b8e7ee785 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.2.0.tgz + version: 5.2.0 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-03-01T10:10:52.480245111Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: a63d18eaee3379461b96e5ddeffbb85b5211f5d3fc3e9e26296d78f3893aca63 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.15.tgz + version: 5.1.15 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.2 + created: "2023-02-17T17:46:50.732469208Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: e5afef72160a5474a29e57bbc60b75d5aa1ebb710d44fde13af9f4a0449d95b8 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.14.tgz + version: 5.1.14 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.1 + created: "2023-02-02T08:19:42.925145937Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: ab6b867b3f59f3a7bbdddd11072c4b4002cd97cbd6823f139c7390e497154bc5 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.13.tgz + version: 5.1.13 + - annotations: + category: LogManagement + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 8.6.1 + created: "2023-01-26T21:05:40.278732299Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 4bfac25bae2e25fb9a00102b1773c5e1487ca69b4248b850dff786e4d0518941 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.12.tgz + version: 5.1.12 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.6.0 + created: "2023-01-10T20:23:00.999981999Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 902466ef3275498baaa0d81f32c98e4824f63e2bf68174ed57200eae1e450b88 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.11.tgz + version: 5.1.11 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.5.3 + created: "2023-01-08T15:28:11.454482832Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 7f630d8d7b742e9ddc608fd0ff7515846b537bd727471014aff247528919056c + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.10.tgz + version: 5.1.10 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.5.3 + created: "2022-12-09T15:17:05.570117149Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: df2f8249c370b8ee54bff24da9303efa1c32b6661180705972310e02bcf5af9c + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.9.tgz + version: 5.1.9 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.5.2 + created: "2022-11-23T01:22:52.254377818Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 1b4e129fa57bd2ff145d60f974f2d8e30beddcbc3ad5df073dd63915806cc24f + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.8.tgz + version: 5.1.8 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.5.1 + created: "2022-11-15T20:41:14.773509432Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 978c6954568928e102acaf3cba4906721b036e5e5c87f01d909e08d5074e4f29 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.7.tgz + version: 5.1.7 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.5.0 + created: "2022-11-01T20:27:01.62175472Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 76d94834f5a14f62e7e82c29d3fdbb6b71bdc0c9cc0a889c41c736607d0db1a6 + home: https://github.com/bitnami/charts/tree/main/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.6.tgz + version: 5.1.6 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.4.3 + created: "2022-10-12T20:15:29.812815372Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 122db236aebdb7c3ad35785b818e5714528cb588a668165fcc95147721da2b2a + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.5.tgz + version: 5.1.5 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.4.2 + created: "2022-09-20T18:15:33.260107583Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: 7750f224044d6e81f2e5409a623d2b02000f00fa005e727c715838452e3d1ea1 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.4.tgz + version: 5.1.4 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.4.1 + created: "2022-09-20T08:59:29.784971841Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:411e32a6cf002eae5261929345ad04f54ab2615be93a2580a1eab65a8df7f706 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.3.tgz + version: 5.1.3 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.4.1 + created: "2022-08-31T01:13:45.715311449Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:a92dc0c6cfeee35a312de0a6e0b799c00a24d68f1c72053267a2d8c5e40f1495 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.2.tgz + version: 5.1.2 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-23T23:11:33.051473919Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:a601ac4fbd3bf1140a2c712b15d103daf9a27cdc9c7ee870e0c8745062c5ae64 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.1.tgz + version: 5.1.1 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-22T20:13:43.949663162Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:f78829a5b4305c4a1b722087b78793fe2dc99659f8f57ddaeb3a6889b431587e + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.1.0.tgz + version: 5.1.0 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-17T08:08:25.533849375Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:fc0574b462bf7c087fd193ef9353718b86b1fae06f4fa93e02b57176257c443c + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.19.tgz + version: 5.0.19 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-09T08:29:27.011159525Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:8efbfff46f7c4aeed58024f4b3998737317510110df227d192f685f82cf24aca + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.18.tgz + version: 5.0.18 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-04T23:13:24.485433279Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:601108a34e686567fc22adace9f2a495bb7b9786cfebb8ebbf3cd4086e959887 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.17.tgz + version: 5.0.17 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-03T22:00:57.53960762Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:92c7903db23ee2058a6c3fb4d4161fd7bc1074915839d79963334d424d56dd10 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.16.tgz + version: 5.0.16 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-08-02T09:54:21.691145171Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:5c6ca65352a42e1c7d92c68414c1295187e15ff563b0e1285a03c77aa175fea8 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.15.tgz + version: 5.0.15 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.3.3 + created: "2022-07-29T12:36:54.385536267Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:caea0575020a1dfbe17146d6bd10d8d36b82ada5a568b2d9043fd9cdec95373a + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.14.tgz + version: 5.0.14 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.3.2 + created: "2022-07-09T10:43:19.806802543Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:3f9419e1ccccf434e637200868e4e7b152a302d085bc35ff1fd8f693a339b545 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/bitnami-docker-logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.13.tgz + version: 5.0.13 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.3.1 + created: "2022-07-01T10:05:03.60516836Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:78dce6337b9bcf98c05a8c32772020ece201221dc0e86583933864074b500832 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/bitnami-docker-logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.12.tgz + version: 5.0.12 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.2.3 + created: "2022-06-14T22:19:57.326289079Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:e9fb1e576b6ac3e48d6e4ed2abc7d696dd93edb19405114228857e3644b7ce45 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/bitnami-docker-logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.10.tgz + version: 5.0.10 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-10T17:23:46.718228795Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:7861cb26ac8fbd5d595d4b08f7b021c054dc28c3e2f88cbaa38c5ca5acb9fb71 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/bitnami-docker-logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.9.tgz + version: 5.0.9 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-08T10:19:25.893526263Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:3675a4bdc9e2fa226bcd22a2e6b0ec726335e992a6f9399662835d126a32e097 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/bitnami-docker-logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.8.tgz + version: 5.0.8 + - annotations: + category: LogManagement + apiVersion: v2 + appVersion: 8.2.2 + created: "2022-06-01T15:24:06.73366365Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Logstash is an open source data processing engine. It ingests data + from multiple sources, processes it, and sends the output to final destination + in real-time. It is a core component of the ELK stack. + digest: sha256:f5b031788d7145d66fedc0a2491623bface2029269f4521f7d9dec16fcfe1011 + home: https://github.com/bitnami/charts/tree/master/bitnami/logstash + icon: https://bitnami.com/assets/stacks/logstash/img/logstash-stack-220x234.png + keywords: + - logstash + - logging + - elk + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: logstash + sources: + - https://github.com/bitnami/bitnami-docker-logstash + - https://www.elastic.co/products/logstash + urls: + - https://charts.bitnami.com/bitnami/logstash-5.0.7.tgz + version: 5.0.7 + magento: + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.22-debian-12-r6 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r11 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-07-25T07:11:26.645446675Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 19.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: ddbe8aa65b25af04ce85744a2e80bf1a1751639e262ec02a67caf8590aa130e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-28.0.3.tgz + version: 28.0.3 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r5 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.22-debian-12-r5 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r10 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-07-24T09:40:53.574805117Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 19.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: ce1e45488794b2ffedd03bc3951468ea93abd1ac9f0d9e09332c11fa8173af4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-28.0.2.tgz + version: 28.0.2 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.22-debian-12-r0 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r7 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-07-16T11:34:05.254417427Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 19.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: ba6ad26716ff3a8f8343299fdcf69fa290a8cf5319a954c2bcdde80175429295 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-28.0.1.tgz + version: 28.0.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.22-debian-12-r0 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r7 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-07-13T10:26:36.170533894Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 19.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: b8796940964a84012b0c5bff14cbb6bd687b570c4ad26914600056e397d520d0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-28.0.0.tgz + version: 28.0.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.22-debian-12-r0 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r7 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-06-28T10:32:57.227668232Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: e1ce6f913c8ab1048ad03c7db8a4e9c863aeaf55924f047a932fd36a66680d54 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.2.8.tgz + version: 27.2.8 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.22-debian-12-r0 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r6 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-06-27T07:22:37.11277633Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: dbbd5d6935750e8083d18f39defb974220ddf60b905a83afb231ab47fc3d1063 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.2.7.tgz + version: 27.2.7 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.22-debian-12-r0 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r6 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-06-18T12:26:36.063938277Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 2493d78c0d1e9c9a82324cd26b2d045ef61e7656a0c0f921ce3c91ec1b25a81a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.2.6.tgz + version: 27.2.6 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.22-debian-12-r0 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r6 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-06-17T14:35:31.517575916Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 40dbdc570c657594ddf8e4a428054b7c802569a0658ef94e48abcb1de5703491 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.2.5.tgz + version: 27.2.5 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.21-debian-12-r4 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r6 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-06-07T02:52:42.897829053Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 3c8d993d04905010878cd7b5d5819f46e0e2f2b3d70d510b51f87e2cd1ae4837 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.2.4.tgz + version: 27.2.4 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.21-debian-12-r4 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r6 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-06-06T20:30:16.176998872Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 12894a471903528ed69a5955da3673375f4a601f4d5d7c982756de97e7511d1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.2.3.tgz + version: 27.2.3 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.21-debian-12-r3 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r5 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-06-05T09:43:42.414827094Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 0e0390d776880f0e4bab45bcd03f175fab182245022501895ab04bbd88cb00f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.2.1.tgz + version: 27.2.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.21-debian-12-r3 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r5 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-05-29T06:44:22.530109734Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: e51e37494adbe3ddbf43b35f52ae6bf4394cac783ee8adaea81e8999110d9a71 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.2.0.tgz + version: 27.2.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.21-debian-12-r3 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r5 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-05-21T14:27:41.080133518Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 84ddf907934597cda689f29ccfa2d9b8732eebeb5630a0bba66fd8a8d72ddc3b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.1.0.tgz + version: 27.1.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.21-debian-12-r3 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r5 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.18-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-05-18T02:42:45.537185993Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: d2e56b1fc8e5b21524918ab034db12d4a5e36957e442b0487edcb7770d2ef2e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.0.3.tgz + version: 27.0.3 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.21-debian-12-r3 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r5 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.17-debian-12-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-05-14T05:32:10.565510139Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 9276130ccdde77be73dc729713aaebe0a3c77b79791e21f999a397ad45ed29e6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.0.2.tgz + version: 27.0.2 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r4 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.20-debian-12-r3 + - name: magento + image: docker.io/bitnami/magento:2.4.7-debian-12-r2 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.17-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.7 + created: "2024-04-25T07:20:21.850944476Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: a3f27c86cfd45ca4b4e2f734f1c5e624ac68ff0b919f49f0b621b3c344116188 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.0.1.tgz + version: 27.0.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.19-debian-12-r1 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-12-r25 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.17-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-04-23T06:55:45.020644068Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 96ab40296a7f7747e6eac22d92a5232724a65e54a4bec66b88276760178d1d35 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-27.0.0.tgz + version: 27.0.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.19-debian-12-r1 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-12-r25 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.17-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-04-05T17:26:26.797761108Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 283a8418762490b3453a0b6d780284eaeec51b70996772533b104c2f39adcb52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-26.0.1.tgz + version: 26.0.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.18-debian-12-r6 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-12-r21 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.17-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-04-04T16:06:12.04427064Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 18.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 9a4c01370135e692bfceca1c5d7006ec06a58d9e64aa47771a04560b1c21c250 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-26.0.0.tgz + version: 26.0.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.18-debian-12-r6 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-12-r21 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.17-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-03-06T11:28:04.695339734Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: f4f1c297ca5045aefee81960cf360c67003de21cb0abf4235c555decf3367696 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.5.0.tgz + version: 25.5.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.18-debian-12-r6 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-12-r21 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.17-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-02-26T14:46:53.60488676Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 5455dfdaeffeb7d04455bc9a389814b731c750b4d0e587e4d0cc6fce280a7099 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.4.3.tgz + version: 25.4.3 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.18-debian-12-r6 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-12-r19 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.17-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-02-22T15:26:00.731543464Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: dbaae8f67352f7907111c6c880e24e0c56b5863d33f7142eba85a4e3460f0453 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.4.2.tgz + version: 25.4.2 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r6 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.18-debian-12-r4 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-12-r18 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.17-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-02-22T15:04:19.850218841Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: ea16d3779d29ba3fb679a1d022b149fa401439f83f0445d389ccc1abc1fb7e2c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.4.1.tgz + version: 25.4.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.17-debian-11-r2 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r121 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-02-22T12:36:02.775374296Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 6a3ed6d9a2ba919d25adf0a21d7c5eeaf20ae817477d05a1bc95d4bd25b8974a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.4.0.tgz + version: 25.4.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.17-debian-11-r2 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r121 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-02-03T00:19:40.526199107Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 402f459b22e4b995e05164b017d3205958e8d582eafa477e677f6373e1dca518 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.2.3.tgz + version: 25.2.3 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r4 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.17-debian-11-r1 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r120 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-01-31T10:20:17.707989688Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 1ab440bd573b4aa6f6a8e3d4b78e0eeafb230ad58733d550953d69516326f266 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.2.2.tgz + version: 25.2.2 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.16-debian-11-r2 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r118 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-01-26T09:10:14.611967668Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 5054b113bf67a8512df1c4156ada4ce13226a7e453734a353f94ff2425cdc48d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.2.1.tgz + version: 25.2.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.16-debian-11-r2 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r118 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-01-19T10:58:29.836812802Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 8ac01996d01779d9c859ee9a60277e5be5a2a2043e66c6f5ccb84b47595bcc87 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.2.0.tgz + version: 25.2.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.16-debian-11-r2 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r118 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-01-19T00:39:55.235546521Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 2a49bc669cc4bb3597e1ed4490ec1b28694b8c373ae40bd6fc7a5642d02d3dbb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.1.1.tgz + version: 25.1.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.16-debian-11-r2 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r118 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-01-16T11:15:51.036689941Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 6cffab7881848925776357b81336d8b9aa97de8086ef3cbf2500ff9123ff9c89 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.1.0.tgz + version: 25.1.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.16-debian-11-r2 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r118 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2024-01-03T10:32:10.510844077Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 97cf978c5a9165b25413deb76765fd55ee8fcfcf1ca93e27dcd280ed86db98fa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.0.1.tgz + version: 25.0.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.16-debian-11-r0 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r117 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-12-20T12:44:11.808214732Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 8f46813a5dcd77b60ce8ff2a88f2a11a46605a1962b3c4301f77da0692182a0d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-25.0.0.tgz + version: 25.0.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.16-debian-11-r0 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r117 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-12-20T10:27:30.843042294Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 14.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 7217b254e8c182864fa59f593811ae0122e4598ecfd5f94d7e4e73b4b15f3336 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-24.1.3.tgz + version: 24.1.3 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.15-debian-11-r0 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r114 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.16-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-11-21T18:39:57.594078404Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 14.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 1526ae288793a4e5aa6e5df7c5fac3e809a517b324cefba12b8e9c26276cfe1a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-24.1.2.tgz + version: 24.1.2 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.14-debian-11-r1 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r114 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r49 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-11-08T16:37:29.502998007Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 14.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: fc755cde28a7ab7dda0a1c687636035f5c60417c90fec9d0bbb891b1ffe26d14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-24.1.1.tgz + version: 24.1.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.14-debian-11-r1 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r114 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r49 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-11-07T12:44:26.428800729Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 14.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 570972a60b48605efb062a9df2db944be43225e0340dbf44718014b9f9f5606f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-24.1.0.tgz + version: 24.1.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.14-debian-11-r1 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r114 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r49 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-10-12T15:23:17.563001729Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 14.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 3228dc03f0c8cbf5a609eb9ddcfab9372db1da6f9b1a5023a911e9496590d267 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-24.0.1.tgz + version: 24.0.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.13-debian-11-r25 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r113 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r49 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-10-11T08:51:13.083324865Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 14.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 20fc0c1497ee5c71718ab8458245515de16f85753467eae1740a08b1274456c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-24.0.0.tgz + version: 24.0.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.13-debian-11-r25 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r113 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r49 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-10-09T20:52:11.124902289Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 19a670241978d742f33873bf0f2ec8af4e649a148f18bfce042c73061c230bc8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-23.1.5.tgz + version: 23.1.5 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r5 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.13-debian-11-r25 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r112 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r47 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-10-09T18:26:39.2529599Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: a0b1b47374120c73ba110d0d044c5cc489050cdcd9ba0d2c3f801509a1f5d0d5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-23.1.3.tgz + version: 23.1.3 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.12-debian-11-r21 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r69 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-09-13T15:34:53.923694874Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: b434f4117135b880a751fca646e789c2709c8674c1181a79c13016d819653eb7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-23.1.2.tgz + version: 23.1.2 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.12-debian-11-r21 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r69 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-09-08T12:42:55.913095771Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 091c909c32409bc71b36dd9bd10374568ce9f31f1d66a97927ff39b533303c57 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-23.1.1.tgz + version: 23.1.1 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.12-debian-11-r21 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r69 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-08-29T07:36:19.596231852Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: a3eb64ff1ecb745a1c36ba58cf8dae7dc4ef208d1b7636705a3ba9de5aa01ad7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-23.1.0.tgz + version: 23.1.0 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.12-debian-11-r21 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r69 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-08-21T11:09:13.106911777Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 24c404b8da720b9cc2bd8e1803067defe8604cc684200309f0db6068515cc0ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-23.0.3.tgz + version: 23.0.3 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r17 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.12-debian-11-r17 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r65 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.15-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-08-17T17:10:57.325264779Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 7f6b0268da31628255769f636502517fbf2b6f0bd7a029076f06f9892bee9b57 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-23.0.2.tgz + version: 23.0.2 + - annotations: + category: E-Commerce + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r2 + - name: elasticsearch + image: docker.io/bitnami/elasticsearch:7.17.12-debian-11-r3 + - name: magento + image: docker.io/bitnami/magento:2.4.6-debian-11-r51 + - name: mariadb + image: docker.io/bitnami/mariadb:10.6.14-debian-11-r51 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-08-03T11:45:20.638845248Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: a1f5092446896e6edf983cb29b1bc8e4b061964368232cc5d7c534860cc333b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-23.0.1.tgz + version: 23.0.1 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-08-01T14:46:48.159128843Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 54948be53a262f2050517878c66ec5fb0118501f5d1b0a4cf2a503e538ca9207 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-23.0.0.tgz + version: 23.0.0 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-08-01T08:46:22.392334747Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: dadcb12b3ea00956014f66a855c2c4e17a9fd319a13d8935df20a19171c09a17 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-22.1.8.tgz + version: 22.1.8 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-07-26T00:53:56.504063265Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: c89da6bdbf7f9116749364c9311f07630562f0161b25532cd476647227710eeb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-22.1.7.tgz + version: 22.1.7 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-07-17T21:48:47.854389709Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 36f7c40604e40e389c2cee4f91e38da6fb0e7b11ffdc2962b4867eef08427af8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-22.1.6.tgz + version: 22.1.6 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-07-15T09:21:07.791663771Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: cb8fe189ea6f37198cbe0415a8fda5724501849348e8d139cfc9275db91fb75a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-22.1.5.tgz + version: 22.1.5 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-07-07T12:12:43.189937521Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 307095c5cbc248e1ba4ebe7bb5aaaed58c16126090c9815b6203580d909b6d2e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-22.1.4.tgz + version: 22.1.4 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-07-07T11:47:53.061922182Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 08c34b39ff4264b4076d83ab7481ba5b1439c52c075ce4d6bb9e422a2f8e3726 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-22.1.3.tgz + version: 22.1.3 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-05-21T19:46:42.169002914Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 2bcdc33eb06797b02754934c2ccae73a9e96ed0c281fc908357dba09960dfde9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-22.1.2.tgz + version: 22.1.2 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-05-12T12:44:39.153652797Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: a2fd70a0074a842d865ad453b029924ca5b833ade461542536bd7e77107dd8ab + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/magento + urls: + - https://charts.bitnami.com/bitnami/magento-22.1.1.tgz + version: 22.1.1 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-05-09T16:39:25.039691166Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: a1d701433fe34384fd1434de5aabc0bd171304ed73f3d48a83ff4366f729f032 + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-22.0.2.tgz + version: 22.0.2 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-05-01T14:49:04.356956884Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: b82970083c99cf1677508d75be5da4daf6b4d936a431d47f2faaedc3f94a3c65 + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-22.0.1.tgz + version: 22.0.1 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-04-21T16:46:39.978438057Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - magento-database + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 9b6abb558992ea65caa046dda4494aec2dec44df3842fb22689ee208d1754e00 + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-22.0.0.tgz + version: 22.0.0 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-04-04T14:49:09.560291823Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: c19c4ca2ef5f0bdfa47ffffe9df236c5711229f36fffcc393f3cb85d8003e27d + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.18.tgz + version: 21.1.18 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-03-19T02:03:59.474424753Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 3d322015b9a9e12507c6269b3616475526bd910dabc3ff64964ccdac25e3c571 + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.17.tgz + version: 21.1.17 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.6 + created: "2023-03-16T20:06:54.613631378Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 6b3775a2596d41b048a650f53e62bfe72a303992fb58791ef478b48bcb27c040 + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.16.tgz + version: 21.1.16 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.5-p1 + created: "2023-03-02T08:34:46.185644119Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 64fbad5a2683bbab98533b2acbbb20501843b25041aa3fcde86c86236dd9987a + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.15.tgz + version: 21.1.15 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.5-p1 + created: "2023-02-23T09:05:18.632773402Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: fdc63fecec0787c9c85074ab25e1eb43e5a3f3c9b6c46ecfc16249360a1b48af + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.14.tgz + version: 21.1.14 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.5-p1 + created: "2023-01-31T10:41:53.048887902Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 016f1caa76fedecfbbcbb415f6689c9b965a2ed38a87d0fbd81a48d0dff0b07a + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.13.tgz + version: 21.1.13 + - annotations: + category: E-Commerce + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 2.4.5-p1 + created: "2023-01-18T08:53:42.29208612Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 6174830ac96076e89dd08d8ba1e5c92162bc335b4f51e420859ed7785dd05de4 + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.12.tgz + version: 21.1.12 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5-p1 + created: "2022-12-18T19:52:52.266350096Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: f5e411c7e81fc3bbb6fc73d5442e292c5078aa880b859e6ef781846edbd3fe79 + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.11.tgz + version: 21.1.11 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5-p1 + created: "2022-11-18T20:56:29.630254224Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 710918cb518070583bea888cc2f9cb5175746188a98c2abc5c24ea3ffc39937b + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.10.tgz + version: 21.1.10 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5-p1 + created: "2022-10-19T19:37:40.784879954Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 00e070be308f1734ed1f233f6c3b6175334cbebc069afebf5482bc42246cdd91 + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.9.tgz + version: 21.1.9 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-10-18T11:24:05.445808825Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 0f2e0e45d44ba4304109779382d00f681c856c1495ec946939c950378ed440f9 + home: https://github.com/bitnami/charts/tree/main/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.8.tgz + version: 21.1.8 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5-p1 + created: "2022-10-17T12:40:44.649509168Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 8ad7792c65d2332201b9e77890c46eb3202a23ae7b20ef8f180b1163cc017066 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.7.tgz + version: 21.1.7 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-10-13T12:39:09.730250197Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: c5b9bcb5f8bfe26d445e44c10ff8dca03c09a45adf4e4a03e4f56e41986f86a2 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.6.tgz + version: 21.1.6 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-09-20T08:22:00.413358223Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 2adfa2905d4be70ec66486261046652bdbeffee92fdf520e8c20fedbacdd4c10 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.5.tgz + version: 21.1.5 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-09-13T12:23:18.352199284Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 2285381f5dcdefce15273a3816a9a88bcac69ed2ce7e760d3e0129dde78e5964 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.4.tgz + version: 21.1.4 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-08-29T23:22:14.004020222Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 05bb38b3a606bec29f54939031104d914ac405a3d04c5d3e344fd3daa137df02 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.3.tgz + version: 21.1.3 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-08-23T23:55:43.787322071Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 0dadd60fccf1b3e10f84b308ef2a7cb4d075a6e4da3dcf46bebe4c4eda819e78 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.2.tgz + version: 21.1.2 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-08-22T20:07:18.693076953Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: a83dc3a5b27620e3abdeac4470967c1ed2a7ee179a1202e3e276beef7bbc28d8 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.1.tgz + version: 21.1.1 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-08-22T16:48:22.609011183Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: b1c9d6cd955bdc579e04885c3056fc0e38eeb1af0c4f237bb61029c64ee4e37f + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.1.0.tgz + version: 21.1.0 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.5 + created: "2022-08-09T17:13:57.055431586Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: b36db74bbefaf255d8df92ccf12501a13d46711f218a5ec96895232b450cc262 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.0.8.tgz + version: 21.0.8 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-08-09T13:18:25.289276627Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 24715db7a1341ee963b52a5cb8da4a10e74f93562bc94341c1a5e4b4208ef937 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.0.7.tgz + version: 21.0.7 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-08-04T16:12:45.894989517Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: fa0bc7e6dd05b6c72fe36311b6025370f8f52f4bc0f571779e14e08d7fa83c85 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.0.6.tgz + version: 21.0.6 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-08-03T08:55:57.083221306Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: 950286faed434dcc3294b80e9c4b9a3a3dc9a59b2489bd6ee6fd179f7b7c0f53 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.0.5.tgz + version: 21.0.5 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-07-27T20:51:46.394808682Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: d3efbeb35dabff4366dc8389fb0f2f99752450a6e24ca06578c20bebadb7020d + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.0.4.tgz + version: 21.0.4 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-07-12T20:45:15.074664613Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:0ac4e7e52b2c775f33c32e1a8ac98eb5d0496d98044c529744cc1dd1aa366360 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.0.2.tgz + version: 21.0.2 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-07-09T19:50:20.463375302Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:833df818e28ba268b3d26afb46e6c4ca1675d07eccdaaab3b47cf74d11f438c4 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.0.1.tgz + version: 21.0.1 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-07-09T11:22:43.838408076Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:d4eaa0c47b0567cbb3aed17a01b064f09e69444a41766301c5547274997f9be6 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-21.0.0.tgz + version: 21.0.0 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-07-08T08:33:52.39226708Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 18.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:72b0fb59b534bcc20ecb1a16290823dc0da5a102408657413878b79968a872d4 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-20.1.15.tgz + version: 20.1.15 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-07-05T17:20:49.595830307Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 18.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:b24869c7c4852b4e8eda3d74937a664bb774928b7596f9537e4ab13d19cb5e9c + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-20.1.14.tgz + version: 20.1.14 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-07-04T18:20:39.263762379Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 18.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:955fbf9edc10e9b022edbc71230ec6a65fdcb69340e5bc186124be689cb9c7bb + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-20.1.13.tgz + version: 20.1.13 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-07-01T11:28:53.119636267Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 18.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:7a6b071ba69558e9118a5a6656636302599aee0733cbeedf7f5f6e30c1e90c74 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-20.1.12.tgz + version: 20.1.12 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-06-16T23:18:14.690772649Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 18.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:f33e1561daf9593d34938586d1d80f537ab9859c5fc98dc8514fda7afb0a0ec8 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-20.1.11.tgz + version: 20.1.11 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-06-13T13:16:16.815593372Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 18.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:edd11f784fc7a078d0b4510a744996820e1cf30deec7c8983072df37b2f8a886 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-20.1.10.tgz + version: 20.1.10 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-06-11T02:05:20.919790424Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 18.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:de49b83ee32b1fbd8ee2500d84d92787eed1f14050ef9f930bf1b6a6a4f6784c + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-20.1.9.tgz + version: 20.1.9 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-06-08T09:47:57.157016684Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 18.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:a80f432b75e02fbce55744b863a0d0d44d2c13c21eac2ab4c41176cef8c50ebb + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-20.1.8.tgz + version: 20.1.8 + - annotations: + category: E-Commerce + apiVersion: v2 + appVersion: 2.4.4 + created: "2022-06-03T23:31:16.006722598Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - magento-database + version: 11.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 18.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Magento is a powerful open source e-commerce platform. With easy + customizations and rich features, it allows retailers to grow their online businesses + in a cost-effective way. + digest: sha256:4c6008ab666f0d23b458645cf096ae7fcf5fa989eb0526aecb020bea15c4f451 + home: https://github.com/bitnami/charts/tree/master/bitnami/magento + icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-220x234.png + keywords: + - magento + - e-commerce + - http + - web + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: magento + sources: + - https://github.com/bitnami/bitnami-docker-magento + - https://magento.com/ + urls: + - https://charts.bitnami.com/bitnami/magento-20.1.7.tgz + version: 20.1.7 + mariadb: + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.4.3-debian-12-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r30 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.3 + created: "2024-08-14T13:19:10.138818325Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 3f772facfa398bb417ddb1dd6d5ec22828ed072f103059f5707422a6f669f0ae + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-19.0.4.tgz + version: 19.0.4 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.4.2-debian-12-r2 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r29 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-07-25T07:43:11.639160037Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: f89428ab7e8050ada038ceb7d0a9659a7f611aaec2bc64caf23cbf7ea7799d7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-19.0.3.tgz + version: 19.0.3 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.4.2-debian-12-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r27 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-07-24T08:06:16.092663172Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 1500a3451073fe0b250b805feebaa72177ba75dfe10936997e640e2e4f727772 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-19.0.2.tgz + version: 19.0.2 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.4.2-debian-12-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r27 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-07-18T08:31:36.602294562Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: c0d02e1f7937b651546be93cdd41ea668db422e1a1667e4f9ff8214c390edad0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-19.0.1.tgz + version: 19.0.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.4.2-debian-12-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r27 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-07-11T13:41:31.738665271Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: bedd9056349b35100e7bb32bff1a3cfe7f37400c16a5af9a47e643487256488f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-19.0.0.tgz + version: 19.0.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r9 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r25 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-07-02T19:00:13.536390609Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: e58f2c4b2249c183157b3e5be863f906270a7cba2fe753e554775ef9315acf68 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.2.6.tgz + version: 18.2.6 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r8 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r25 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-07-01T15:35:26.647426717Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: a5722147962f47b2bc5ec82feab12946ac4338fd21e8ea9d463b79143612e6c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.2.5.tgz + version: 18.2.5 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r6 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-06-18T12:19:02.325483572Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 43cba8297faebfbc55faa6efce9a2cf0113c63d9b897f5fc16b2678c789809b8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.2.4.tgz + version: 18.2.4 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r6 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-06-17T13:03:48.267433183Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 15c8be1e06eb6b0643790d43410a4bb9826837b928548469041c31dce2b69789 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.2.3.tgz + version: 18.2.3 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r6 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-06-06T15:47:26.265514913Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 212c2b40da492d7e50c384a82300ed35958be5bb20f71636251279bc8213bb36 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.2.2.tgz + version: 18.2.2 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-06-04T09:47:28.268858024Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 44cb2e2b27efba54b2ab77620b6486ce08821ee4df825440fbde7932920ff5b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.2.1.tgz + version: 18.2.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-24T09:48:58.431667962Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 0c705462b38d876d58efc3dd1fae20da1b1c50098042a837b309b6ad7b234d0b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.2.0.tgz + version: 18.2.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-21T14:16:13.714303938Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: e1efc8d1d4b8affe6170624e560fbd22bdf81c05d058ab0cf15ded417cfbbe69 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.1.0.tgz + version: 18.1.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-18T01:55:49.440075474Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 710328d658e5b39ff346dbd5721fae59e7b919255925639dfdd28bcb33463387 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.0.6.tgz + version: 18.0.6 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-15T08:59:23.283253694Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 69fd340b4caffc09998e557daa74e4985f3111358f36a368e996938359281b94 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.0.5.tgz + version: 18.0.5 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-14T05:22:11.362895776Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 6421bc41c64ddad9e416547582d7f95a3d6a7ad31310dd9f3e3193ac9981deba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.0.4.tgz + version: 18.0.4 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-13T08:24:10.109888994Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 64b02e6b7073555ef3c455c2d712f49902958ebf5c1180f2f13c774e79344c84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.0.3.tgz + version: 18.0.3 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-04-15T13:08:44.641009472Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 5d3643a45a53c636c7486a540c4c80e6d086aa660f776ad9fed29527a675d419 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.0.2.tgz + version: 18.0.2 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-04-02T19:29:33.725994632Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 643a9a8c55e66c97bce55073e9901432e8fb1b2bafb9011ef4c1faa948872832 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.0.1.tgz + version: 18.0.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.3.2-debian-12-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-04-02T11:40:53.83571755Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 81967e9874f6f4f864c33bebd2f00c41604a473ed7183406f9cc6c9cb3c31640 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-18.0.0.tgz + version: 18.0.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.3-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-03-20T10:31:03.581743752Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 2a0972c12c22447b25d1801f5dc0d8edb0a0dc0b6d005c0f01e9c1232d0c190f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-17.0.1.tgz + version: 17.0.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.3-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-03-18T15:50:38.870916009Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 524390671b75bdf9ab5a51798158d09da3169dc22667704c6a7b4b63900e6cf6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-17.0.0.tgz + version: 17.0.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.3-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-03-05T16:55:14.090645453Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 68baeb5bed0d05469e805fff6745b68ddd77a585033a0d03fcc90ab108677529 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-16.5.0.tgz + version: 16.5.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.3-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-26T08:53:36.799361153Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: b5fec5468dbffe2f0264d6f69a8be6432b487f8212dfd9313bb967e0e039c673 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-16.4.0.tgz + version: 16.4.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.3-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-22T11:08:04.083135735Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 0726bb48da092836e2f60648afe3e1e13615831e79a3ce23d27743cb4a386f01 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-16.3.2.tgz + version: 16.3.2 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.3-debian-12-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-21T17:27:29.449906919Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: e6b942c6b64f239f466b28f85e0bb3772bda2dcc055ddd7311fbd0b474e1ece0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-16.3.1.tgz + version: 16.3.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.3-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-20T09:42:05.683694719Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 5bed0f6c804e4ecf09ba0e43c490b81d7249845e0630de0eab8cade75a6c1d46 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-16.2.0.tgz + version: 16.2.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.3-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-16T16:48:35.758548761Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 2c6992def863dc09b8d430603680ff6e54ec3eef34ef9775b535e93a7b0753a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-16.1.0.tgz + version: 16.1.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.3-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-09T17:20:05.465902437Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 944cf6638a118409a495c447fbc83fc2d077c0daa7e4e5d18eb1a62fee1ac2bc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-16.0.2.tgz + version: 16.0.2 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-08T12:50:32.095204915Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 22754950575b75bfd12c50ce472e7d2dea64e9f6a0f9606ecd4488e922647174 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-16.0.1.tgz + version: 16.0.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.2-debian-11-r6 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-02-06T16:23:25.356138533Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: fb0490c53ca8be8b1312faf31ed707fc06dbb9abcd0923c243d8d91b3fc52802 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-16.0.0.tgz + version: 16.0.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.2-debian-11-r6 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-02-03T00:17:23.3326337Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 5f9209db22a96a057141c3cb583ae88ddd267b84952e1db480f2f4d46db2d86e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-15.2.2.tgz + version: 15.2.2 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.2-debian-11-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-01-19T09:26:55.004022706Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 6da8bf97299b9a296b252bb9648244d4c55fa70f4a36f5d3bc681f564b57e3c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-15.2.0.tgz + version: 15.2.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.2-debian-11-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-01-18T06:25:12.755378113Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 236838191014ecbeaab0b65698f66cd78a8047158a7c18d6b5f99ba374742213 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-15.1.2.tgz + version: 15.1.2 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.2-debian-11-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-01-17T13:44:43.884111349Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 17f26ffbd810ea54bb61f222cdac1b9fe30ebe647f56e5fbfdaf343dca9cb0ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-15.1.1.tgz + version: 15.1.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-01-17T11:58:06.409849437Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 01888d0f166d0f1768a0c380e066349da603bbff7875d9056526c4b771addd82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-15.1.0.tgz + version: 15.1.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2023-12-20T12:22:11.02595037Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: c4826c24d923d3f288be38a67d1427b097d57aea8b0bd43ea2c3e2114e89cd75 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-15.0.1.tgz + version: 15.0.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.2.2-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2023-12-20T08:32:25.904675224Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: e90b78c473d62416c8f7f221e1fb20f78b95e92b7d8e5dae20c5cf427260a15c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-15.0.0.tgz + version: 15.0.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.1.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r71 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.3 + created: "2023-11-21T18:40:59.343096332Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: ccc732abba3730331bc2e7a3a6017e47b97102ca925e409334ce3cc0f1ce5837 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-14.1.4.tgz + version: 14.1.4 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.1.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r71 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.3 + created: "2023-11-20T10:10:20.983894355Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: f7c752954052a6bf18751d01481ecfa8688acc04fd75d2bd52c3485dbefa29df + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-14.1.3.tgz + version: 14.1.3 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.1.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r71 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.3 + created: "2023-11-15T02:50:29.973561187Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 4c5e6036403880de2a2ccd9f7679e6faa18ea9eb644752e70cb3959e89a91872 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-14.1.2.tgz + version: 14.1.2 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.1.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r70 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-11-08T16:33:21.250246598Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 51bb143961232f1648bd4830522fe68fdb298901ec7270e04b5fa93c00c14e5e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-14.1.1.tgz + version: 14.1.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.1.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r70 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-10-24T12:31:50.905947169Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: b3631e3f19620f611cdb6f885d21637aed2f155232d86c60b5420d429b9c9f2b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-14.1.0.tgz + version: 14.1.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.1.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r70 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-10-20T20:17:23.115372038Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 18a703d01e84cb0bfd1f125b5a9b18658d00e26ce45c041e9ca7906b75b8492c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-14.0.3.tgz + version: 14.0.3 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.1.2-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r70 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-10-15T10:18:17.082343015Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: db94650da9591c7c046b41c8bab5a60ce6598bce1b918aa028fae64bc990dacf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-14.0.2.tgz + version: 14.0.2 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.1.2-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r69 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-10-10T10:36:47.584334099Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: fb8c9808bb3aaaddd1543e7c58b6b48e047a0d87360dd250a40c193067aa6faf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-14.0.1.tgz + version: 14.0.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.1.2-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r67 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-10-09T19:23:37.02729813Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 5b0718a4a714fed85e829511797ea626a029b0aef6d9b97d8b11eb5e556ff790 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-14.0.0.tgz + version: 14.0.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.0.3-debian-11-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-09-07T10:11:53.932313491Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 2c10d6eb89cf26b58734b006fa4a63d47fff094646cf7ca79ae92765c91ccf34 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-13.1.3.tgz + version: 13.1.3 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.0.3-debian-11-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-28T17:13:24.666096038Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: ffc1d3d0a4f2b7fd0117c692f24f50c7713a925ac19d0269df44e6855b0818f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-13.1.2.tgz + version: 13.1.2 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.0.3-debian-11-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-24T09:09:41.251508332Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: c769d9d24344754d8efb2eda9aab6f33948cc0469f10eec6c1ad1245b9f7130b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-13.1.1.tgz + version: 13.1.1 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.0.3-debian-11-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-23T09:05:56.883743832Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: f85f9b83fb440bc23ea539e83aa71a2c2ff8654a71e5db989b587879c90e1792 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-13.1.0.tgz + version: 13.1.0 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.0.3-debian-11-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r24 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-20T08:04:23.501173223Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 4902a013efe2f97afcb2d72e3dd1e82e09145d6526923f2f10d47b4ed87ff0ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-13.0.5.tgz + version: 13.0.5 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.0.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r20 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-17T18:16:40.573227145Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: b65011af6743760896748f84c196482c26d49f8a1ada8765577fee07775286ec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-13.0.4.tgz + version: 13.0.4 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.0.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r37 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-15T03:46:33.02959407Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 1ca29b6be5c4d4f024a6f2f2d21312c9c7a6058b62a3157b913cb17c8a77d4cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-13.0.3.tgz + version: 13.0.3 + - annotations: + category: Database + images: | + - name: mariadb + image: docker.io/bitnami/mariadb:11.0.2-debian-11-r15 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r34 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.2 + created: "2023-08-11T09:50:52.956549693Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 3032d3b36a0605a8fc7b6cd6e7f02d8c944110b603d0b3f1a765333db5812f45 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-13.0.2.tgz + version: 13.0.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.2 + created: "2023-08-04T14:49:13.060122194Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: e4281eb396a7a8a4513748586cfc178c4bd8ca9c55936f5edada13682420c3ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-13.0.1.tgz + version: 13.0.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.2 + created: "2023-08-01T08:23:57.051526095Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 0ee96e484abfb059c6abf03f1245d4f1fdbaaf0fbee107f5a820e1e85c8bdc10 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-13.0.0.tgz + version: 13.0.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.4 + created: "2023-07-26T00:34:36.377142134Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: efa7c7dcfc0ddb7276f23b9cdf3a99bfe15762b67d5eb2cb5c9befac5879f7e4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.2.9.tgz + version: 12.2.9 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.4 + created: "2023-07-13T14:21:58.540491671Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 5bcc50c1a2003dfd646a04be0465f309281954b8ea79b54bbd18983a6f8b2989 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.2.8.tgz + version: 12.2.8 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.4 + created: "2023-07-07T11:28:51.875904343Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: c9889f722eafeaaf2969136d468fa2153f6257ff7ef1341c63f6ee8a7d9ff1b9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.2.7.tgz + version: 12.2.7 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.4 + created: "2023-06-07T11:26:58.952145194Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: c9a116e6a42c54d1bd08d5a39cdcbc8c730c6e3a6b85ff324aa7b192a06321af + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.2.5.tgz + version: 12.2.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.3 + created: "2023-05-21T19:52:52.552992817Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: ab22bbdba5581ae38bbfe5584347758e4120d3ef9008d95f15c1c2d85fd9062b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.2.4.tgz + version: 12.2.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.3 + created: "2023-05-12T06:32:54.872967953Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 0778eb8a4620804729102c3c0e386f28e7eb0a1970c5999dd296951e645f0a08 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.2.3.tgz + version: 12.2.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.3 + created: "2023-05-11T10:17:23.619606331Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: b42525b2566292c25fe387a23d4388b7b9f93818f237a3062a3ddf4253203c22 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.2.2.tgz + version: 12.2.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.3 + created: "2023-05-11T06:29:17.932299373Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 077631f3bbeadb6af5ba1ce7915076f6844d8fcb39c448088afd3556a69b9024 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.2.1.tgz + version: 12.2.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-05-09T12:52:00.998238039Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 5edde3aab5835dfe446c20f7295dd838aa81410fa16e075ecccf733079c49566 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.1.6.tgz + version: 12.1.6 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-05-03T12:04:16.875394036Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 38449c235508f0f04585ecbb34f52a5f164d3df39da590d44dad541442b4ff3b + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.1.5.tgz + version: 12.1.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-05-03T09:05:48.730753593Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 26424bef9fb7ecb6668d3af055d8680b6b215b9f006715b848461f3827bc60c1 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.1.4.tgz + version: 12.1.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-04-27T08:46:02.653637094Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: d785894a37e01b4d3f29cc48986365e9dec8fade09afa1fe91075b6badac77fd + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.1.3.tgz + version: 12.1.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-04-26T14:35:10.194633072Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: e8ba49236d5e9241346a08ec707b8dfc80853f33901f46749e249c233bb221a4 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.1.2.tgz + version: 12.1.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-04-25T13:33:36.224868513Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 86d9b0c36d52fcc5b7b4463ab2ad3738328bb7f932144d867b0b36a6bc27cb90 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.1.1.tgz + version: 12.1.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-04-21T13:21:01.727785892Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: de7320e49fe248a877f2e044e953248f15d0aa0ad5d0ea10eb21b17b39ace590 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-12.0.0.tgz + version: 12.0.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-04-13T09:25:39.017298698Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 7b465fbc11e3511c48fdd42904a9acd3444203064bbc34d985d79f7d025ac8bb + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.5.7.tgz + version: 11.5.7 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-04-01T14:23:47.55671907Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 4077d3bb85fa74334a3e423a04067e926139dbb6fab586b7d2d0eea7373b4f5a + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.5.6.tgz + version: 11.5.6 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-03-22T09:40:58.468849194Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 82671c93c4ed5e5ebaab3b9772f98bba5e30213ec7dc99025442dfb1ef2b20ae + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.5.5.tgz + version: 11.5.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-03-18T23:52:50.217381216Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: ac15b75870d76c175b16a688a17ef5d2cfb0545cd8a4892d87974221b9ebe098 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.5.4.tgz + version: 11.5.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-03-07T12:51:50.603887871Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 40cd93285012baa0ac72160ab2c145414e54cce1888deb0cfda5c4abfc9f6483 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.5.3.tgz + version: 11.5.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-03-06T16:16:16.422763291Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: dd8b8a4171188e9820c77ed07db924faee93eefa5482c28debfa28972730c95c + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.5.2.tgz + version: 11.5.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-03-01T10:17:57.217187065Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 21fb454ce72cb96ed3115fc8cc4ac6336192dba98a66ebbb0961af2a647ccf70 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.5.1.tgz + version: 11.5.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-02-21T14:32:37.556250052Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: eaa5876ed8c5081f8f826139d502ed4c12c73d8c4ee2d8eccbaa2694ffc78cf9 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.5.0.tgz + version: 11.5.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-02-17T19:29:01.630735346Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 44090636666074af719fb1f8f89392589b7ce400d014382fa2c265926cb2b82c + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.4.7.tgz + version: 11.4.7 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-02-07T06:31:48.237230116Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: a428431b2da4530e3928510a14a3fdee663c28f794f36a991f98e96564c26061 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.4.6.tgz + version: 11.4.6 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.11 + created: "2023-01-31T08:04:15.533388941Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 7ed0da00c6f9e25b4365a78fafd7113d8cc39672faf651242172ae3ff6aba7eb + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.4.5.tgz + version: 11.4.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.11 + created: "2023-01-18T11:45:31.919642808Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 6a81a35a26978689705343ba48915044cc669f1460959567e67240d443d49db3 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.4.4.tgz + version: 11.4.4 + - annotations: + category: Database + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 10.6.11 + created: "2023-01-14T08:59:15.784734695Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 6ff6cf2826582a15376b0a9896969c922f1f0f5e54cd22aa9c1ebff362dd5c41 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.4.3.tgz + version: 11.4.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.11 + created: "2022-12-15T08:55:05.881350294Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: e2da0d20b2928517c0203f237ac2abc3560ea398e9703b3be9e79bacd257461f + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.4.2.tgz + version: 11.4.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.11 + created: "2022-12-09T03:04:12.771900748Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 3759aa62c4440a6c08fe2158843591319c4f314d753c26b5b3f38f828c4b8b7e + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.4.1.tgz + version: 11.4.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.11 + created: "2022-11-17T11:04:12.047109803Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: c2470b258868aa1a2ccf950c11d5f735278a8ab04fc9c9428285e2df363c5910 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.4.0.tgz + version: 11.4.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.11 + created: "2022-11-09T06:40:36.925796491Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 22fc0590ebcf0b3273dd7e4c4356492768557c2d1e702130df247b655556cd3c + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.3.5.tgz + version: 11.3.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.10 + created: "2022-11-04T20:36:41.934482276Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: a95d01fc384f685c7f3f29cdb3eb885596018c606958c290f44267a7e8123b7c + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.3.4.tgz + version: 11.3.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.10 + created: "2022-10-05T20:39:46.045220214Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 379a976941df8265bf379a929007d316867645d43d40100ad2509bd319083b27 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.3.3.tgz + version: 11.3.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.10 + created: "2022-10-04T16:53:47.620329278Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: e9eb374e807d6071c0430896d528f9e59004173358f7896b1e036d7dd2b1b27e + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.3.2.tgz + version: 11.3.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.10 + created: "2022-09-19T22:42:10.485301475Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: f97c7da84debebf693d0bb6208da91dd1f6bc15aaa4570e45dd40dc94e40680e + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.3.1.tgz + version: 11.3.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.9 + created: "2022-09-06T08:31:50.365302072Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 9ee6bf31744a94cc5e6a1fbefb8b378ccd17ef9df59949a71c671056b2d6eff3 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.3.0.tgz + version: 11.3.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.9 + created: "2022-08-31T08:56:39.920076283Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 0cb1c4640ff80767a3cafadd22769dbc3ab0b72d5eb5f92e07b70ecd5a0acbb5 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.2.2.tgz + version: 11.2.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.9 + created: "2022-08-23T21:58:54.555922596Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 14a056fc154a73dcadc87c3b7815a6b0f230a4b95931a130f59dde747c3e9ae0 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.2.1.tgz + version: 11.2.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.9 + created: "2022-08-22T13:49:23.461848108Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 133d87a4b9910bd738422ade7bb5f6c1fe04043b7a8fa8af281792e9480c3152 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.2.0.tgz + version: 11.2.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.9 + created: "2022-08-16T12:38:46.772646242Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: fe3a0de7cd7e879bba368dcc6e617679425ed0f251b2109f97fdd09e4530be48 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.1.8.tgz + version: 11.1.8 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-08-09T08:20:35.94361895Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: daba980a5b939285c4d5edfea7ccf039249798f66df7da4e54f6276c64d4da29 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.1.7.tgz + version: 11.1.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-08-04T17:52:21.492577029Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 70ed8558a4e85fe822b18f766277ff6110cc6e91790cd3c415b54a17aa6cdef2 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.1.6.tgz + version: 11.1.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-08-04T08:10:30.884221886Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: df01d24fb1afad3ce7495b764deaa9cb48185a1a9f3f7c853650d1c3f1848c32 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.1.5.tgz + version: 11.1.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-08-03T07:51:41.777347827Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 0910630f5db456b1bc9f3beb7912109c6397c6edf25ca328673ba7830202c68d + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.1.4.tgz + version: 11.1.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-08-02T08:46:39.27050526Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 5ded277adc98c488ee35eb91cd00b1234806a59a6e982f247fd6032d4d750b0f + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.1.3.tgz + version: 11.1.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-07-30T10:21:17.351831802Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 6079698105bd56705d60092543239dc7a5b347bed86b250766a47de70b2e992f + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.1.2.tgz + version: 11.1.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-07-25T07:48:15.668228432Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: b5f84ac83982dc643004b0371f4898996e42ab308156eccb7082b8de9391add8 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/bitnami-docker-mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.1.1.tgz + version: 11.1.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-07-15T10:25:59.863989668Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 54e336c4d2471abfaaf801b9b5df1f330b3a9bc5089b75faff326aefe07a8a3f + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/bitnami-docker-mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.1.0.tgz + version: 11.1.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-06-30T10:57:18.718409683Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: 91fe0e4ea7c5eda4ed590f0eb866de5b0d3f563ca5247032ae2f11f4f32ec934 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/bitnami-docker-mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.0.14.tgz + version: 11.0.14 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-06-10T22:24:58.432140691Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: sha256:d117551f4243dcf36bc1b1b09bff70896b3a95f58ca5c63cf5fe0d70e0718460 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/bitnami-docker-mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.0.13.tgz + version: 11.0.13 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-06-08T20:11:01.124519804Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: sha256:3d50b105d222e5b0c3687cbd356222e0a2a8a19aaad78d946d9fe5ab372e4994 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/bitnami-docker-mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.0.12.tgz + version: 11.0.12 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-06-08T10:53:43.793912533Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: sha256:547a63018591a031072f23edbc567f2e59a055bf93d8f035f152b4b4f4bbfa5a + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/bitnami-docker-mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.0.11.tgz + version: 11.0.11 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-06-03T02:45:49.783913761Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB is an open source, community-developed SQL database server + that is widely in use around the world due to its enterprise features, flexibility, + and collaboration with leading tech firms. + digest: sha256:320cff73b802f7dbff2c8da6ca156b5f9041c16706e2390bb4c0cfae9cd3f09a + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb + icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb + sources: + - https://github.com/bitnami/bitnami-docker-mariadb + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-11.0.10.tgz + version: 11.0.10 + mariadb-galera: + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.4.3-debian-12-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r30 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.3 + created: "2024-08-14T14:12:02.407320202Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 0254f3b969b5a038644b8bfbf2866005416ab021cbbb5cc4e42e12017cebf65a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-14.0.9.tgz + version: 14.0.9 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.4.2-debian-12-r8 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-08-05T14:30:00.237610427Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 01954f8dab4f83e2087fd3440de6b46c35040bfee5fe8f08d4c241c259a2f100 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-14.0.8.tgz + version: 14.0.8 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.4.2-debian-12-r7 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r29 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-08-05T12:37:25.813186622Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 173d6a53ad6bbc4fa0fcd1896aea0bf83aadfce9937bde69722af752c820ec9d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-14.0.7.tgz + version: 14.0.7 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.4.2-debian-12-r6 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-08-01T12:02:00.318566346Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: d155fd5b8dee236af8d6e588999cd7c06aa59dcf04a8a93582b7e8aec15e4c9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-14.0.6.tgz + version: 14.0.6 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.4.2-debian-12-r6 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r28 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-07-25T06:33:11.29982235Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 7dfd9de0643b5fceafd7a70ef5acd353bfe9fd1ab92b824f95437401d54f6c2c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-14.0.5.tgz + version: 14.0.5 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.4.2-debian-12-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-07-24T08:15:55.393675958Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 56532fed0d477bade3ffb02fd170bfa209da4a562a809cf621504eaf75066130 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-14.0.4.tgz + version: 14.0.4 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.4.2-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-07-23T15:20:49.640994234Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 8b1a7b5f0cc060dc093d13678ea268959cff5acbe19f60698c062aa60ca511c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-14.0.3.tgz + version: 14.0.3 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.4.2-debian-12-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-07-19T08:47:20.061212839Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 203c05f6f4bb375f02cd88c1a52a04909bfab7e18f8ba8549f599e9a3ba7d61a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-14.0.2.tgz + version: 14.0.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.4.2-debian-12-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-07-18T10:11:04.08774008Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: d724a3a1d0d865041d77d8f31528e5a82cbb91c3c8614108130ea6365c6097db + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-14.0.1.tgz + version: 14.0.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.4.2-debian-12-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.4.2 + created: "2024-07-11T16:53:07.261628847Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 959f04feb3b43dce43857b6a488ac62a6b2caec169a512711dace46b9c6b7288 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-14.0.0.tgz + version: 14.0.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r9 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-07-03T18:30:20.094271348Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: a11bfa1d13a65ec6ed6d18b4fcca1e7f957af04c530d2e68d08705d6e201e74b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.2.7.tgz + version: 13.2.7 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r7 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-07-02T18:58:29.032450305Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: d6e1450cb2ef642d8369aa9ffba26fb13691d5df8b8fa4c90785d8e8bdaadf56 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.2.6.tgz + version: 13.2.6 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-06-18T12:24:33.596216905Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 93b8de8a26ae5eeb2a1f3942b06ead2200ba7031e22c1c477729e3cb377bda8e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.2.5.tgz + version: 13.2.5 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-06-17T13:04:11.577003251Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 1068e6830b7208fef85e671998eeb1ca0fceaf541cc4135b1e1074d4fee42d1c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.2.4.tgz + version: 13.2.4 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-06-06T16:01:10.068817816Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: b6ad09a84f731c22b93298239b3ee9e3dad0f5f8c7a2d624f91df9032076ebbe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.2.3.tgz + version: 13.2.3 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-06-06T12:44:53.019372284Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 88a4860f92c6fc56423d89d5cfdb14caecdaae1f87b74eb8de66be215aa99e2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.2.2.tgz + version: 13.2.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-06-04T09:46:23.693539974Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 42536e59de221222be6007622e14a1658c1d10085d43e5cc8817ebe3e61da564 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.2.1.tgz + version: 13.2.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-24T09:23:53.963213926Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: c5fe743a2467635e3cece813f18f364a16498fa347aa222c37cffbd22b074e99 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.2.0.tgz + version: 13.2.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-21T14:16:22.274115056Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 4835fbaffdb27b1029cede21bedf203a8d90db82bbaa1ff37dae80aeb635ab57 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.1.0.tgz + version: 13.1.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-18T02:01:57.022416821Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 4c0eb4abcd7008fda193dd00b2e03a290dbc093179f5f2f030e6bcdf5f415e84 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.0.4.tgz + version: 13.0.4 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-14T05:23:33.415826763Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 252291c539cac30183692f9819db9d79a3a4453d1237c9cda5f4db06bb711671 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.0.3.tgz + version: 13.0.3 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r2 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-13T07:49:12.468637776Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 458d220b6e40cd6b06998589b323d1980672009496e7426ef002e02c11523806 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.0.2.tgz + version: 13.0.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-05-10T08:41:49.386056562Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 629d57f6ae9d008f43408dac32411241df1aef589db7db36849fbadcf69711f5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.0.1.tgz + version: 13.0.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.3.2-debian-12-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.3.2 + created: "2024-04-02T12:38:08.426152063Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 21a8467edfd6bb31255d51679fa88593484eab58b3048b6994a38c7bb1c18476 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-13.0.0.tgz + version: 13.0.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.3-debian-12-r7 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-03-27T00:06:52.166135994Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: aea79e80d0262f9848bfa17b79bd806a54c8659534baaab6535326841f1dc03f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-12.0.2.tgz + version: 12.0.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.3-debian-12-r6 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-03-26T19:49:35.52172535Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 240eb6998497f81d20375be820019c8a9aeb15acee1278cd3e722eb818b824f0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-12.0.1.tgz + version: 12.0.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.3-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-03-18T10:12:20.184398648Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 78f60122286ae2309405fd7532a57646dc2686a083c69a832cfa542533392c23 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-12.0.0.tgz + version: 12.0.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.3-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-03-06T11:29:13.709485785Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 277b87da1ef40806064ae72694ecb83235b0fdd88452d8f5d072a0d452c87985 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.7.0.tgz + version: 11.7.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.3-debian-12-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-22T11:12:20.149669801Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: b915fbad6f49150c1fc4d88a67c7c5a58eadad76492db48134a98cf16a54a66b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.6.2.tgz + version: 11.6.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.3-debian-12-r3 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-21T15:32:57.740454263Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: fd401ebdd4a2c88624c238cf985faf6b72cd49947018963eb7ebc75527f83f86 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.6.1.tgz + version: 11.6.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.3-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-21T09:10:54.289864002Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 831048beca7d72db3631df21e9d10f539aa938c50e5b397a20bd00ef20f5773a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.6.0.tgz + version: 11.6.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.3-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-15T11:32:20.038892635Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 6b441be2564089abd445f12e0129a6fab11a1551375f9c1340cc54918dbda216 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.4.0.tgz + version: 11.4.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.3-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-09T17:16:53.330819292Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 4cc39bb985132ff7877a5ffa206ccffb4ac57094b01687bb1b120cb3d21b5624 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.3.2.tgz + version: 11.3.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.3 + created: "2024-02-08T13:00:14.116265461Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 3a349fe93204dba55c45c900bc6e9ecd8461fdac5ed7499400120a77a93990f2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.3.1.tgz + version: 11.3.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.2-debian-11-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-02-06T08:32:01.476841623Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 22812ae17903bbbcbe5742feb918574ee672d99b2cf76e8b42e75ba08466f461 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.3.0.tgz + version: 11.3.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.2-debian-11-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-02-03T00:20:48.507699099Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 417406f090975369f2aee100e0a14414e502c0f582554d6e8b79c86133644df6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.2.3.tgz + version: 11.2.3 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.2-debian-11-r4 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-01-30T15:21:00.423176088Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 32d17ff76d2b5f6d3cc719dfa9c016258b060f522992cc3571f47d03daec97a3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.2.2.tgz + version: 11.2.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-01-19T11:00:23.855584206Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: df7699a5f6fc6b3ce6d6e1a44215361e2c57b997cd652028ac8d89e519242a91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.2.0.tgz + version: 11.2.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-01-18T09:06:45.890858235Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 023ae9976bef75284deb368fbbe9c96a7d76916cef66351b223b7b1769450080 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.1.1.tgz + version: 11.1.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-01-17T12:03:53.375584016Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 150b82feb87556106b40ecaf1f216bd93d95ea235c9a3fca338f701638f9f918 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.1.0.tgz + version: 11.1.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-01-12T13:16:17.689267505Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 774ae913966aa9caad4e1ca3ca8549ceacfe13acb65b13a63e4e235a4c96ebc0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.0.2.tgz + version: 11.0.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2024-01-07T19:50:28.562150107Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 483681acccbe08628e1c38df3f071a2cd26e74a8e1b63c8f072e08eb3446c60a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.0.1.tgz + version: 11.0.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.2.2-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.2.2 + created: "2023-12-20T12:25:06.340537363Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 31c1964d863b39ea15928c06ebbdbd5e6af5ebad1da859496eb7ba3d6dfc3c69 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-11.0.0.tgz + version: 11.0.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.1.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r71 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.3 + created: "2023-11-21T18:42:56.111510442Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: d6b91c990a5c302f655aed0c4d12522be570c7a010da736443207a69fdf8b542 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-10.1.3.tgz + version: 10.1.3 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.1.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r71 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.3 + created: "2023-11-15T02:11:43.72079684Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 2f3359662e3534786e9b1206ad0a314feada802c8fd8207ffede69855ad86f6a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-10.1.2.tgz + version: 10.1.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.1.2-debian-11-r2 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r70 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-11-08T16:31:37.56047767Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 6dd2b1206cd131c21ec446ceb357570dbd6b4b85ce30976efd3557056cb4d153 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-10.1.1.tgz + version: 10.1.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.1.2-debian-11-r2 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r70 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-11-06T13:20:53.068547965Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: c12e3884d3e1de6620119867acbd2f366fb66b9972e8b5d5b25c5b5b2df6407d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-10.1.0.tgz + version: 10.1.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.1.2-debian-11-r2 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r70 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-10-20T21:42:51.908771601Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 29b84e1c7aeecc41937050fd8c0fb47d1275ec2d907b49eee8e58faf20792ab8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-10.0.3.tgz + version: 10.0.3 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.1.2-debian-11-r1 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r70 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-10-20T20:31:21.768530005Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: e140bc50be87fad32acd2faaa1f87595d71688a6b626a0bd285ca06b528bc597 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-10.0.2.tgz + version: 10.0.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.1.2-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r70 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-10-12T15:27:09.623258183Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: fbbfcf39768998f0fd7d1d33af4e52d8c98e537baf93f0764377e386ad69f3ee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-10.0.1.tgz + version: 10.0.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.1.2-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r69 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.1.2 + created: "2023-10-10T03:48:47.882120692Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 2ad8be8aa3b8b058ad51633a95aa0ee23b4070eae41b0dc9e28ca3c856176c8a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-10.0.0.tgz + version: 10.0.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.0.3-debian-11-r33 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r53 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-09-29T11:29:28.654677323Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 185f3c1a7b3a90c1308a4fdcc8e13ec6149760b0e29cc1d73450c12e6b22c5e1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.2.1.tgz + version: 9.2.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.0.3-debian-11-r33 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r53 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-09-28T14:06:05.099342003Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 62d6dff8135104a7fbc074bc941175065a648ad5d3f2877f6235d0f814f3a142 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.2.0.tgz + version: 9.2.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.0.3-debian-11-r33 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r53 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-09-20T22:39:52.443960786Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: fad4892ba9da14323ee5c316e97c7b0b340eec9909db2d11982461ae3a843802 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.1.3.tgz + version: 9.1.3 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.0.3-debian-11-r7 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-09-07T09:28:39.348900152Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 4f31eb7b5ae8affd2a28d795e1f6b3255bf7fc3594a15fa4c2a6870cb1c673ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.1.2.tgz + version: 9.1.2 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.0.3-debian-11-r7 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-28T17:14:30.664639472Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: dace08973c9cf7ead07ea55cd032816242188a39db4f7658cbad2d6c0b3f5064 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.1.1.tgz + version: 9.1.1 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.0.3-debian-11-r7 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-22T18:45:09.68027436Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: f53440c9b0841ab18059af3c9b4d3eea1c53107f74f30dda1339828ed30d0a77 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.1.0.tgz + version: 9.1.0 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.0.3-debian-11-r7 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-21T22:15:56.280752382Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 813e8d74d693c6b1984a434f8ddbc86dd1d4fe60b1a5f35d5c3cefe525045b75 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.0.5.tgz + version: 9.0.5 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.0.3-debian-11-r5 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r23 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-20T05:45:52.802943935Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: b4348a2b761d5deacdb866e3092f89ce89c21ffb95c2f6311ce28c8deba727b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.0.4.tgz + version: 9.0.4 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.0.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-17T18:24:42.806735991Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 4faee0eea8d373e610292f62cea7c3c7831be49323724a3c28418b18f3a568b0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.0.3.tgz + version: 9.0.3 + - annotations: + category: Database + images: | + - name: mariadb-galera + image: docker.io/bitnami/mariadb-galera:11.0.3-debian-11-r0 + - name: mysqld-exporter + image: docker.io/bitnami/mysqld-exporter:0.15.0-debian-11-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.3 + created: "2023-08-15T03:44:32.763790324Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: aa16ad6c9785be972f46c9f59a671d8b5b4b383724fed30accc44d850c643430 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.0.2.tgz + version: 9.0.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.2 + created: "2023-08-03T06:35:07.362411567Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: f100bed7d723d9c4eb834f99131be6bbbe3665dd3d46df5b83da7065c3d7ad7d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.0.1.tgz + version: 9.0.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 11.0.2 + created: "2023-08-01T08:25:42.038195144Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: d18be3f2ca7fd07a929981c28b28a792580994065162b91f248ec048f0870a83 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-9.0.0.tgz + version: 9.0.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.4 + created: "2023-07-27T12:16:41.412969242Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 4b8bd1fcce836b11d573c8b8ab69cf69356999913ade1cf082883f4d0248e331 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.2.9.tgz + version: 8.2.9 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.4 + created: "2023-07-25T20:39:17.245881492Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: bc24b753d64be56da8c7f27cf962f7da1be999d16e9670246f227da75bef5af2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.2.8.tgz + version: 8.2.8 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.4 + created: "2023-07-15T09:06:42.536728122Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 1c74d734b6def29a5f3322d079fca4f5dc7c141594b45f372c2fce2958fc90be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.2.7.tgz + version: 8.2.7 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.4 + created: "2023-06-16T23:56:22.92066202Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 6fe1872aae1c46899dc8d29525ca5c0678041d5aa2dfdda8e3ae85fc922f8bb9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.2.6.tgz + version: 8.2.6 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.4 + created: "2023-06-07T11:35:31.464901812Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: b9cd8e289a6eefbce199b07be0b4fd7cdf542dcb80549dc09c8de560b911e9ac + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.2.5.tgz + version: 8.2.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.3 + created: "2023-05-21T18:08:22.371827025Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 4f4987911d044eb6fcad42a254a2c47a9afd122d21aff3f87a2b2e577f66ab15 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.2.4.tgz + version: 8.2.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.3 + created: "2023-05-22T08:11:04.072941157Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 40ac5ea532a2910ae88f4c238314634b9f207b649e51456411fbc8a3537ce234 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.2.3.tgz + version: 8.2.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.3 + created: "2023-05-16T02:20:15.002185046Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 8222d92f2ec32419de490cdda5bd50d4d7324a5e17a54dec95f88480c2f1d696 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.2.2.tgz + version: 8.2.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.3 + created: "2023-05-11T07:00:09.468296886Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: e2e44c47518cf5849766c32c95946a1171ec7895b5948885d2923c48c18d57c1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.2.1.tgz + version: 8.2.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-05-09T12:51:53.407592232Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 7d4453cede07b02b5c2b32424bf7c1e1a0a03337228edf4a613e7f9115969165 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.1.2.tgz + version: 8.1.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-04-25T13:31:25.184931441Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: e258c6700e8db9b76b5ff0033caf3af132a7594b7725aa291ffd3fdd4780a447 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.1.1.tgz + version: 8.1.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-04-21T21:12:20.570317263Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 8ac4c1ed4db94e5da7329c74fa793ecd973c4597a0f4de6d52c61c290dd7008c + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.0.1.tgz + version: 8.0.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.11.2 + created: "2023-04-21T17:57:46.948168764Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 79194b0662e976cf1dd4ea1709b0062bbf69b5389594c6c95858f60759a5bfba + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-8.0.0.tgz + version: 8.0.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-04-01T14:27:07.793494136Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 19249748e9ed35072262c505ba40704d33be97345b7f075dc4af1873ec1afe57 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.5.5.tgz + version: 7.5.5 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-03-22T05:08:41.989241775Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 1f2f407ad02c0604b37a2853edd93b467628296222702117d336201900ea2685 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.5.4.tgz + version: 7.5.4 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-03-09T20:08:16.470097628Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 4fcaf2faf319f4cbbd8a039f61fd993edb2c789a409b93a9cfaac3f62ff4ab1a + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.5.3.tgz + version: 7.5.3 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-03-06T16:10:50.021347213Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 6b06c901ed1f5c11e259e7f23e8243b0e3ed6930e736b1644417b325a203de08 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.5.2.tgz + version: 7.5.2 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-03-01T10:12:07.076652535Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 8ba423d11738852637bab509222024eb3365bb936ddbcea62d835f8f828fc167 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.5.1.tgz + version: 7.5.1 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-02-22T09:44:54.788171691Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 77ac7a0eaeecf05ecb39bbbc3af55e6eaff9ad7020d1692b3d207c989638dc06 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.5.0.tgz + version: 7.5.0 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-02-17T18:58:51.678352217Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: a4eb0e0ad81e3c4399bf7b53837e20c64afd464047d357ee14b14498c9b27637 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.15.tgz + version: 7.4.15 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.12 + created: "2023-02-07T08:36:16.996896236Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: a46ce951de9776094f0891a056e0fce9fda61fad4aebe79e75583b6778127121 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.14.tgz + version: 7.4.14 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.11 + created: "2023-01-31T10:36:01.749224613Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 55f0e1c471086bd72c6cecd4d26e45f66dbd166b3f3d064f34a1abd4ee2d13cc + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.13.tgz + version: 7.4.13 + - annotations: + category: Database + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 10.6.11 + created: "2023-01-24T17:50:02.005747991Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 02e5587bc7e5abce4afba07c840cc54b18bbb954d85267d9be044b6b3b76e896 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.12.tgz + version: 7.4.12 + - annotations: + category: Database + licenses: | + - Apache-2.0 + apiVersion: v2 + appVersion: 10.6.11 + created: "2023-01-12T11:06:42.902316525Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 4f8fb99f1a990749d5ba066bda11ff4fe4574f40cd566cd949cb4554eff547a1 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.11.tgz + version: 7.4.11 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.11 + created: "2022-12-25T17:34:07.736695062Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 96ac8d82f8c3136d6c8de4b64929630e5ad119ebf3e92f6249d261c0cc167eb5 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.10.tgz + version: 7.4.10 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.11 + created: "2022-11-25T17:32:40.395103203Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 2875c20f0900172821833ad0296e842851f9cdf4f8be4e2cac72299a355b878a + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.9.tgz + version: 7.4.9 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.11 + created: "2022-11-09T06:48:18.951413568Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 817b9c7edb6a772ea082430014ff0641fa7fffe4cc2fa4338bebc116620812d9 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.8.tgz + version: 7.4.8 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.10 + created: "2022-10-20T18:21:07.746409109Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 6bca7bb9860d61ec2de45c3ecee4a51b86d9f1f08d31c810d6fc5e5e5a1b7c94 + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.7.tgz + version: 7.4.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.10 + created: "2022-10-19T14:58:02.450295401Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 2d4d01df55d0ba71184ed81e42fa39efd8e8473192c93b09a74cfcd311a9968f + home: https://github.com/bitnami/charts/tree/main/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.6.tgz + version: 7.4.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.10 + created: "2022-10-17T07:57:18.024615188Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: 22d251c6c4011436685876f3e4257c36c26db23f02eb1f5695f6fa05b3c9245e + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.5.tgz + version: 7.4.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.10 + created: "2022-10-05T08:32:29.538337074Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: b83859495722d3c0c21ef538dec51889f54509aa1dd0f71a423b16248224d08d + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.4.tgz + version: 7.4.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.10 + created: "2022-09-19T23:04:03.575079613Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: f5c2b5ded664f6d94fcbe3536db7a26a192182e4482f062d95972cb49fc6db83 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.3.tgz + version: 7.4.3 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.9 + created: "2022-09-14T17:35:47.486995245Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:08903e9478904e1e1e2be128b8c78fd82ade3aefed7619e55d8f9f11ee5e365c + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.2.tgz + version: 7.4.2 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.9 + created: "2022-08-23T23:30:52.753056557Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:84886c95144409963c95487387b2bbc26ef997acb1b599c48b2f3d01514abe62 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.1.tgz + version: 7.4.1 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.9 + created: "2022-08-22T15:02:11.865417195Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:cec2fa96910a99bb4f20d3a1a1b47b21541f7aa547a2153fb2d6a61778e64045 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.4.0.tgz + version: 7.4.0 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.9 + created: "2022-08-22T08:58:17.91923578Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:99e0e315500e939df8b1f6f385637f6dc1eda484924b1803d3a6781ae31e076b + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.13.tgz + version: 7.3.13 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.9 + created: "2022-08-16T05:15:07.904989269Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:31fbc327208a5cc4c6a325a4e9c3060ae634d51f44d05cc87b6d10756323efae + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.12.tgz + version: 7.3.12 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-08-09T06:29:55.080410393Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:e19f03580c843889b907487f8e1392e223b725adce920f2ed8ef92f1c47f16c8 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.11.tgz + version: 7.3.11 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-08-04T21:55:58.072940709Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:776e7788d4be389a5da6db518b2995ec94b9c5023bf7f135055a7620698692e6 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.10.tgz + version: 7.3.10 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-08-03T09:19:31.406717524Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:fcac6b59e7f0f9bd5b8d4a4635a9453f91a08e3699c36cae3345b9c1e10fea08 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.9.tgz + version: 7.3.9 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-08-02T10:07:38.599774826Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:7261efb05b29eeb6ecb1734109e139750c60a3d1ac511f6dc4a75db0bfb2f81e + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.8.tgz + version: 7.3.8 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-07-30T11:43:07.774423253Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:ac6cd0415f9a3fad5a71bce15da1d9879708b8e06666e80402a95d6dce8b7982 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.7.tgz + version: 7.3.7 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-07-01T09:57:19.432322138Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:ff8356a0c910561228bdda0ff45f22c7a875e8a875205a058bffd481382a8047 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/bitnami-docker-mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.6.tgz + version: 7.3.6 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-06-10T16:59:32.016314873Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:8226bc86be02c825ba0eb1ce8648750bf4640082341a4abe9b30239014e07430 + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/bitnami-docker-mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.5.tgz + version: 7.3.5 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-06-08T10:17:54.024908661Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:c11292d1dfbe982ec2a3126fa538473f5f5dfc07291dba9f4f7ec2219bafe3ff + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/bitnami-docker-mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.4.tgz + version: 7.3.4 + - annotations: + category: Database + apiVersion: v2 + appVersion: 10.6.8 + created: "2022-06-02T23:51:12.486660888Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MariaDB Galera is a multi-primary database cluster solution for synchronous + replication and high availability. + digest: sha256:08fc7e4d700fd26a31b1308d00285ddad2b76ca0a68da3068ebf6f9b6a01f60f + home: https://github.com/bitnami/charts/tree/master/bitnami/mariadb-galera + icon: https://bitnami.com/assets/stacks/mariadb-galera/img/mariadb-galera-stack-220x234.png + keywords: + - mariadb + - mysql + - database + - sql + - prometheus + - galera + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mariadb-galera + sources: + - https://github.com/bitnami/bitnami-docker-mariadb-galera + - https://github.com/prometheus/mysqld_exporter + - https://mariadb.org + urls: + - https://charts.bitnami.com/bitnami/mariadb-galera-7.3.2.tgz + version: 7.3.2 + mastodon: + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.12-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.12 + created: "2024-08-19T14:40:43.915279325Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 95ebb9d78ef7b0dc123ebfb4ff7e22a81b112df86c20b624bef8c6596fee79b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-7.0.2.tgz + version: 7.0.2 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.11-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.11 + created: "2024-08-16T16:39:08.697864745Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 24320773237ef0e8f37a9eb7460708fe8e9699c83725d77289bc3fff702c7968 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-7.0.1.tgz + version: 7.0.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.10-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.10 + created: "2024-08-13T10:45:43.871236591Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 29d3873587f13297e7159a7cd3c26bb1be4d85ff6afb7debd11b8a56ba655baa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-7.0.0.tgz + version: 7.0.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.10-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.10 + created: "2024-07-30T13:47:52.745975584Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 336d91ad2884f6be1fc742d90c76338e8161192cc1d19d0beaba526470f2ba53 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.11.tgz + version: 6.2.11 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.10-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.10 + created: "2024-07-29T13:11:55.492072808Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: e30c1a2173fac8b82c810ad747ab315c799f5444e2294e5d8697ffbef95c0fa7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.10.tgz + version: 6.2.10 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.10-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.10 + created: "2024-07-22T10:31:54.573268805Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: e065e6b2ebd865d0193a835eb4aea479708fcd36e55c6dd842145173b682ac12 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.9.tgz + version: 6.2.9 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.10-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.10 + created: "2024-07-04T19:30:56.749966284Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 6e9dbd1634eb6649a6d74603055b8c25c802dc21c5264edc8470d9e2e7bd0f61 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.8.tgz + version: 6.2.8 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.9-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.9 + created: "2024-07-03T07:49:37.177619126Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 8b44e51014c4a0901fdd3d5d589404033d1df5e62f8f477f5e8c1722b96da289 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.7.tgz + version: 6.2.7 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.9-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.9 + created: "2024-06-18T12:22:51.416021128Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: a93ca9c1f72354201f8df3f5aeff52af86378e5d08c7162ef492fd216ee67949 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.6.tgz + version: 6.2.6 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.9-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.9 + created: "2024-06-17T13:06:09.248040154Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: ad46d144eeadffe7774caa8aa552ff54a9ad60ec52baf08e6c5277f96e9c5fc5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.5.tgz + version: 6.2.5 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.9-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.9 + created: "2024-06-06T15:50:16.79123195Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 65d4130151820b156248bd45442217ebf91e28aca2c5eb6587712027975652ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.4.tgz + version: 6.2.4 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.9-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.9 + created: "2024-06-05T14:14:01.847276713Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 37bdd30344c1d1928303f42125409ce8cd3ac35e554ab0b23d45ae879b55a6a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.3.tgz + version: 6.2.3 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.9-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.9 + created: "2024-06-05T09:43:11.018283747Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: bedbbc6b0887c221b67e10e2b56ce5448cffcaa8aed8e7d15d302dc8c34fa77e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.2.tgz + version: 6.2.2 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.9-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.9 + created: "2024-05-30T18:07:07.851404236Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 61501cd694007d762d75a04ec7ce4361a85f803ab82943e10ea52167a4d120b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.1.tgz + version: 6.2.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-05-30T07:42:54.08578887Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 8da61773b4d265b759ddb817b3207a4cf8facd9a8c139fa360756d9501d54aec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.2.0.tgz + version: 6.2.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-05-22T06:56:16.244350055Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 4169ca986861c1ae376b8a83aee169eb3c01dd0657a53576c9b59717851b2c80 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.1.1.tgz + version: 6.1.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-05-21T12:57:33.942052564Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: c0fbb688f7d962de7e74385fb22543380b995b890bb6ec27543f9f9972288a4f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.1.0.tgz + version: 6.1.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-05-18T02:02:37.808961585Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 9797575f2a501c08565c8495aae4e471b8da3f6a8197ee51c7aa02f6fc1fcb8d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.0.3.tgz + version: 6.0.3 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-05-14T05:30:01.448953313Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: a381b48dee4fb030a7bc4685372c7c1e31648a52df433a41582afc8eb9d76443 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.0.2.tgz + version: 6.0.2 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r19 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-04-26T06:11:25.257039203Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: b355bb102f083394c8729711de0c3478e8b2426b79344363733bd56aad4c6866 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.0.1.tgz + version: 6.0.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-04-22T09:38:50.534752962Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 21.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 4a461f5bb7eaa2ae1699c08ff0c97fcf5cb632cc494331cf41649a846d9cc38e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-6.0.0.tgz + version: 6.0.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-04-17T16:59:12.076291278Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 5e0b37190ef12c7d5ea32663f99f317dc66922441f145c086a3892b444693ff0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-5.0.1.tgz + version: 5.0.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-04-01T16:34:01.369748498Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 20.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 11.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: ae440bf79d70d453d38f9e14178305f1157bc96822504490d83f8c1779188f02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-5.0.0.tgz + version: 5.0.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-03-25T16:33:13.879564093Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 1213bdb8407fdcc93e65ec851c1f550440567fdd07c5f5baa5cc6ea9b1b2e716 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.7.3.tgz + version: 4.7.3 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-03-13T11:53:47.213806097Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 7049524f83867c12eec419c02feb9ab3464e9eae3df1d90f5dd644335e5c4887 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.7.2.tgz + version: 4.7.2 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-03-08T16:25:50.543250828Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 0036ac00a42af9d5d041f844ef98b1aaa3ce1b5fe02a5823b556b3637d4519d6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.7.1.tgz + version: 4.7.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-03-07T15:53:03.925322839Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: f7ae78911e340988603e8c98889922a0929fc4b715ad369ad69983c3c86f1d7b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.7.0.tgz + version: 4.7.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-03-06T11:29:59.948440866Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 0c78702591772779cf6db53afe152ca7205d02597bfbd71a6973790c5bcae1fd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.6.0.tgz + version: 4.6.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-03-04T12:44:44.847052257Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 1c1a562edc89a1f46aa9de43df5e4da427b0a1e24329685e11cb09cef2c67a9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.5.4.tgz + version: 4.5.4 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.8-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.8 + created: "2024-03-01T10:17:29.927759931Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 485e4b90e9a41de1c7c7a4eed1dd27fcdf0e7fe3b2bc09fdafcc69c2631dc860 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.5.3.tgz + version: 4.5.3 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.7-debian-12-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.7 + created: "2024-02-22T11:13:20.090664644Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 580f5715468a7798c50ea4e90ba744ea2e0cf1e0e110c0ae5b50152eebdf14f1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.5.2.tgz + version: 4.5.2 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.7-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.7 + created: "2024-02-21T15:42:20.838659562Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 7b936d6da888c89318ccf4ba8b8d8bd91c94c904631488521006421f4a077428 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.5.1.tgz + version: 4.5.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.5 + created: "2024-02-15T12:24:20.717468093Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 2a239d35fa7f1f85842f121d7c5f58f5662a6819049e87ee53020f3edbbca564 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.4.0.tgz + version: 4.4.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.5 + created: "2024-02-07T17:23:38.605203444Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 8c98ba93524233e7a19c4a41a4402f78a23d2d9549b4a75746b0fbc7cc012e88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.3.0.tgz + version: 4.3.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.5-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.5 + created: "2024-02-03T00:21:55.289405183Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 43dfa3b5f673303b25b3b219ab823bb3a1361037bceb02d7e4c5ef0827df781d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.2.5.tgz + version: 4.2.5 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.4 + created: "2024-02-02T11:03:45.87684726Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 33b6249d8000234ff76223dfe363c0a41312be8e9e2bd89caf3a45fc9b489c6c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.2.4.tgz + version: 4.2.4 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.4-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.4 + created: "2024-01-31T04:31:48.818894337Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 72c882b23ad42b424f4a487c62de9488f748ef7459e222e52c0026dfadbf54a4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.2.3.tgz + version: 4.2.3 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.4-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.4 + created: "2024-01-25T12:41:30.515855362Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 0e6477d857254d19adfc6dc3205b6165992e73be8ed9e0369b194c59358b1c54 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.2.1.tgz + version: 4.2.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.3 + created: "2024-01-22T13:29:43.391922175Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 03c5f4b66eb24c1db43bf973f9ef83a4774c0a86340a74f9b15837574c733ab5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.2.0.tgz + version: 4.2.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.3 + created: "2024-01-18T04:28:11.78015033Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: a0b1eb1844bcf656af6c0c6c0f41aac8d93523c7133e5885104c76b0fed0876d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.1.1.tgz + version: 4.1.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.3 + created: "2024-01-16T11:18:05.019313247Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 61d48a979077d59dcf47dcb73af092eb3cc52ad18c188c2dc0210f997ae313b2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.1.0.tgz + version: 4.1.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.3 + created: "2024-01-12T14:36:55.335144274Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: f6bb20b1f30a96b236dfeb10071a0f009695ec1f48be6e2d9ce783dc4fe0307d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.0.4.tgz + version: 4.0.4 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.3 + created: "2024-01-12T09:19:02.450039539Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: a5c84d85eb1ea975e71f78a7d50812228f38a8a06f971ad80c0689ec45b90d9e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.0.3.tgz + version: 4.0.3 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.3-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.3 + created: "2024-01-03T12:01:11.365550057Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 55d742b50235afb0ef1b48892f47da55502d3145987c6cc1cd5d281d643883e2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.0.2.tgz + version: 4.0.2 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.3-debian-11-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.3 + created: "2023-12-29T12:30:33.522478882Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: a43f307d8455c3becbe7b0af4ee57dd74b7d2c632ae6bda303b550b470ec474b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.0.1.tgz + version: 4.0.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.3 + created: "2023-12-27T10:00:58.107279333Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 10.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 3d63be09784fadde740fd67680c50011f030ee8454d653d776095e0722e87bce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-4.0.0.tgz + version: 4.0.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.3-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.3 + created: "2023-12-26T17:20:01.900920777Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 9b03cc398f0b276064df6f836209fce24c4de5720b2e08a1123f108ff4dd5d26 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.2.8.tgz + version: 3.2.8 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.3-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.3 + created: "2023-12-05T22:25:29.408569329Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 0269babf792475e4fbfc3dacfd2c07f5566ec87093ca55fe467758325e18da9b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.2.7.tgz + version: 3.2.7 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.2 + created: "2023-12-04T23:08:37.978251661Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 8dc27a851c5847b3c8ead54c6b770edf06e3cbcd78a6b36cd0af0f8ebb086b62 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.2.6.tgz + version: 3.2.6 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.1-debian-11-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.1 + created: "2023-11-21T19:48:11.303094934Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 9b8dd09b1fff2767278920cb5abe6826914c1028180f2c76734ba7f873fecd04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.2.5.tgz + version: 3.2.5 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.1 + created: "2023-11-21T14:59:20.894479644Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: eba84cd306b6a0fd06627d1520de0da4f830c7c8229cc955c06251cba4cfa5ca + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.2.4.tgz + version: 3.2.4 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.1 + created: "2023-11-16T03:21:44.447533396Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 43983d1555a5d72eda31eb0b0c2941b6e224262923795345d66500af26815475 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.2.3.tgz + version: 3.2.3 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.1 + created: "2023-11-08T18:13:08.119950556Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 698687368ea49962333e4a5dd012c9e90ccd01fecc553bffbf6fd2913be8b109 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.2.2.tgz + version: 3.2.2 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.1 + created: "2023-11-08T16:44:56.317040523Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: d2194d386ccf8f95794f10c31a1793520c351608505d870a7563abe153c6f344 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.2.1.tgz + version: 3.2.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.1 + created: "2023-11-02T13:08:28.223288208Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: f9ccbdaf46c3f21beade595a7a71d2c96cd96accb01e6ac07bfb0b2fdf1a8f25 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.2.0.tgz + version: 3.2.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.1 + created: "2023-10-31T13:04:37.472020684Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: f2cc3a6d294655b403b25dd4fba8fffb9cd9e4586deaa4aa5e9b843259d17f03 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.1.0.tgz + version: 3.1.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.1 + created: "2023-10-12T15:32:49.762006418Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 486c1b3671125cc383d591a6435ce9f4070c4bb2531b034c13c41588e9708977 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.0.5.tgz + version: 3.0.5 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.1 + created: "2023-10-11T08:44:59.271717506Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 7571153d0fc9b7f05607bf14fe7f0cc35aae6870af8495d35ee2138d65e7cb75 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.0.4.tgz + version: 3.0.4 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.0-debian-11-r12 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-10-09T20:48:02.44319408Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 0ab448e33a554e26301a68fe35b7bc3bb1d2cda4f1c30a7250443605efdaf39c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.0.2.tgz + version: 3.0.2 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.0-debian-11-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-10-09T19:15:33.685259414Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 3bbf2fad3ef16c4c26191000056a9ff42c307dd7477bdd0c1699c95a1e0d66bf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.0.1.tgz + version: 3.0.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-09-29T11:38:45.386461122Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 64f877031a9783ff94777c05ae8f6776a9bb9cde00e91551f59e679323b8474c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-3.0.0.tgz + version: 3.0.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r77 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-09-26T17:58:10.827700387Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 81f050b3f6744822f546eacf8628a8af4a355f34dc66e1f09873c44e3456e480 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-2.1.8.tgz + version: 2.1.8 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.2.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r75 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.2.0 + created: "2023-09-23T18:50:36.235595683Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: c3bd4f8023c6c3e90c050fc78f0c9db42f3877d8dadccfccb0e2b03b94447bc2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-2.1.7.tgz + version: 2.1.7 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.9-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.9 + created: "2023-09-20T22:16:55.732547885Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: e6bb8b911aeeb3ef9d53828a2f19511eb4e1d43d0f7d5bb8cbb11c5045bc8409 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-2.1.6.tgz + version: 2.1.6 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.8-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r72 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.8 + created: "2023-09-19T22:08:44.326717714Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 70bf061509a0e6fd373da4ae9f829ab9c150e8ced09ee6e8e3f321bea1d13c47 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-2.1.5.tgz + version: 2.1.5 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.7-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.7 + created: "2023-09-15T10:05:51.454800668Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 9169fefe717f897360e2c36ec038486b0422aa2e7146cfc12f8c4b9d914a5742 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-2.1.4.tgz + version: 2.1.4 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.7-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.7 + created: "2023-09-07T07:59:30.627261134Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 94fc629e6838ae1bb08af824b37aa089d6cfac89f10377d6f6e20caad7be604c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-2.1.3.tgz + version: 2.1.3 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.7-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r57 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.7 + created: "2023-09-05T22:25:12.607099087Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 4c159ad013c9556b42f7549ac8976231757e000e75a01fb740d2eb2221724189 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-2.1.1.tgz + version: 2.1.1 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.6-debian-11-r19 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.6 + created: "2023-08-29T07:28:02.211988996Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 683a0db43b29e1a45a11c9cee87590d133dc5ba30dc55be7d113f5d5f908b564 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-2.1.0.tgz + version: 2.1.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.6-debian-11-r19 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.6 + created: "2023-08-28T08:07:00.267813938Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: b76df42dc84f1e9e153c97a0a6c46e6eecb871d729712a6ef60623ddf7a19e9c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-2.0.0.tgz + version: 2.0.0 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.6-debian-11-r19 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.6 + created: "2023-08-25T17:51:31.239357961Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: ad98a6b0c109bf16c460538f1d5d0abc1312cdff906dfe2d30a84581456a0111 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.14.tgz + version: 1.5.14 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.6-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.6 + created: "2023-08-21T08:12:49.068998103Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: da5418c949fccc856484600a183af157cec27816f63be5614cdb224cb6f751d2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.13.tgz + version: 1.5.13 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.6-debian-11-r15 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.6 + created: "2023-08-17T18:55:41.215772599Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 01ef4d37ac7b1cd11c2c4ea1fd3352db426f57177fc8bcd4f792772f033c2b44 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.12.tgz + version: 1.5.12 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.6-debian-11-r13 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r37 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.6 + created: "2023-08-14T12:23:04.525905969Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 8332d99fa81cb9417b9444037e804b25c2d9b8fec819819dfc8aa96974d84ba6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.11.tgz + version: 1.5.11 + - annotations: + category: CMS + images: | + - name: mastodon + image: docker.io/bitnami/mastodon:4.1.6-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.6 + created: "2023-08-03T11:52:13.225636832Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 13cc5a1ea49f686e43052f05cee3a0855f0bc272fad9c07874ca3091a44cdcf1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.10.tgz + version: 1.5.10 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.6 + created: "2023-08-01T17:02:27.894360131Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 48bc10db4993f16f3eb01104060a47b4f8b5e496873772d1fad682264ba17b19 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.9.tgz + version: 1.5.9 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2023-07-15T10:10:47.504437885Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: a419bc8c7c2433f39a4f3255630b7b03d8a927bcb2dbd96e2c88ab8663475629 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.8.tgz + version: 1.5.8 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2023-07-11T20:13:47.622097311Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 9f2c78e16dd5d9c291978dd495da686718df116fbc59445995e155e7bad18219 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.7.tgz + version: 1.5.7 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.4 + created: "2023-07-08T01:05:21.69683672Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: c46198d71958401ad29af74a300f9b7bdb1f124def4dab9359432fb163f7a9aa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.6.tgz + version: 1.5.6 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.3 + created: "2023-07-06T19:15:43.880845611Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: ea8143f9d74275a40ba566823ea0e6ae28befe9acb326949fc5068a733cce90a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.5.tgz + version: 1.5.5 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-06-20T21:25:17.61072312Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: d7591facbc5908fffc6a1dd2e68d6a5b9ac8d2dc51eb92571365fae6fd932f5e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.4.tgz + version: 1.5.4 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-05-21T21:08:19.834908317Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 8a3019c8f16e5884a27e155d789e646c407ffe615477cb331df52b24d05318b9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.3.tgz + version: 1.5.3 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-05-17T12:00:49.408377338Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: a1e9e66349ec4d5c933e44d2a0ad889444b163efc9de9d6a78103d58f0d39dc2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.2.tgz + version: 1.5.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-05-17T00:12:51.527211648Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: cd1faf7f2ea4f3aea6c40d89c46dd406a22d34f050a81b9faaae46dc512479b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.1.tgz + version: 1.5.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-05-11T08:16:14.442817463Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 04003944ef9f7c4b52880df0af8928b08fd52713a5dbe11bbdbf91103fe398a7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mastodon + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.5.0.tgz + version: 1.5.0 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-05-09T15:55:50.471904311Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 013ae447d09ee89fd0ab2b26166df7879cc1a84d86612001040833e4e08e6c77 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.3.2.tgz + version: 1.3.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-05-07T09:27:10.441490596Z" + dependencies: + - condition: redis.enabled + name: redis + repository: oci://registry-1.docker.io/bitnamicharts + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - condition: minio.enabled + name: minio + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - condition: apache.enabled + name: apache + repository: oci://registry-1.docker.io/bitnamicharts + version: 9.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 3213d8d7b6966f5854a26a4766513e239692cc9c64a073d79d29dfbe784ad0b6 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.3.1.tgz + version: 1.3.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-04-06T10:49:45.387663896Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 1fbf4bdaa3ca97b13e06c3b4c335627be980744aeff87675b95e7085f58f07f1 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.2.0.tgz + version: 1.2.0 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.2 + created: "2023-04-04T16:11:36.777902265Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: fe04fb5efacc64a28294176a586f6bb828968c5ee9233606e8d33b8a35f0ecda + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.1.8.tgz + version: 1.1.8 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-04-01T16:38:07.189587631Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: e393e74092281a2c432330e9af68873771b1b721091212096bb534cd07050cfd + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.1.7.tgz + version: 1.1.7 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-03-21T17:17:33.121342803Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 3f6070739c7e14258ac41556d90bf1f46fdae36ed3684d0fa572b2f9522adca4 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.1.6.tgz + version: 1.1.6 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-03-20T13:29:13.387942951Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: d804a94c82db17ebc1dbb6694fef7447d43d3797569f3507467a4b603fd84583 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.1.5.tgz + version: 1.1.5 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.1 + created: "2023-03-19T00:36:45.713232067Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: c6eb9e04ec18fb9aadff4019b82819da809b1984d347df01293215202086875b + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.1.4.tgz + version: 1.1.4 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-03-14T09:17:53.43236095Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 6f345ea0b5d95c752a0e8cc74288e8062e189ecdb3b714f4964496cc3f26fec4 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.1.3.tgz + version: 1.1.3 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-03-10T17:07:26.967617769Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 02d835c91ff9708e30e962c342fb93c3245aa1a70ede54d0326a23b23b5d61bc + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.1.2.tgz + version: 1.1.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-03-01T10:35:05.680763134Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: db1e62be567be5c7f68705c79f0288345718f772b84eaf8c7567a8c60e835deb + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.1.1.tgz + version: 1.1.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-02-23T08:59:17.606529897Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: ad29a5a8493bd8c9e68d6319dc09c3dd015c2d9d2bc9e147e58bd8efc9534425 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.1.0.tgz + version: 1.1.0 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.1.0 + created: "2023-02-17T18:11:21.327908951Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 477d7f402c79fb2dbcf7e9a63d472e4811c5a2f90b56c1f69815f8c0403c7732 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.0.3.tgz + version: 1.0.3 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-02-12T16:11:28.115278716Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: eeeee7ae4289e3cff80ae51f2542645c284238034f0bbf5b3ca7a948f6a95860 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.0.2.tgz + version: 1.0.2 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-01-23T11:38:31.136973534Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 62263534b4e97d4ff1bdccff64b83718b584b6abea81626c0c9c786044c98479 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.0.1.tgz + version: 1.0.1 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-01-19T11:46:29.352861657Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: c6788dcdef5d51c9de5079ede32e4823119a800280c65e8feecab175038e8f00 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-1.0.0.tgz + version: 1.0.0 + - annotations: + category: CMS + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.0.2 + created: "2023-01-17T07:48:42.19641451Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: eafa269d054ff12468322ebd11ef203d1aeebee8e083c736ede0024e5b44147f + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-0.1.3.tgz + version: 0.1.3 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.0.2 + created: "2022-12-22T09:02:02.7328491Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 1a95634888377640c9f280872658f8a0ff522a73a201c1bae9c0a203b5ef04db + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-0.1.2.tgz + version: 0.1.2 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.0.2 + created: "2022-12-16T15:29:26.225280698Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 9811aaaa1e478ebd7700ac86adf240c209e98dc3f2a00200dbc943964e3fd071 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-0.1.1.tgz + version: 0.1.1 + - annotations: + category: CMS + apiVersion: v2 + appVersion: 4.0.2 + created: "2022-12-16T12:22:44.264804724Z" + dependencies: + - condition: redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 17.x.x + - condition: postgresql.enabled + name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 12.x.x + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 19.x.x + - condition: minio.enabled + name: minio + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - condition: apache.enabled + name: apache + repository: https://charts.bitnami.com/bitnami + version: 9.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Mastodon is self-hosted social network server based on ActivityPub. + Written in Ruby, features real-time updates, multimedia attachments and no vendor + lock-in. + digest: 3213e567a8c7aa26ec45db6b02f023e96be0ef75b2719510c1a75c109e0ed3d7 + home: https://joinmastodon.org/ + icon: https://bitnami.com/assets/stacks/mastodon/img/mastodon-stack-220x234.png + keywords: + - development + - dashboards + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mastodon + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mastodon + - https://github.com/mastodon/mastodon/ + urls: + - https://charts.bitnami.com/bitnami/mastodon-0.1.0.tgz + version: 0.1.0 + matomo: + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r7 + - name: matomo + image: docker.io/bitnami/matomo:5.1.1-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.1 + created: "2024-08-15T08:58:27.796699896Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: dabff17441b0c3512e46c7fb5c2ace82652a0bcce97c4ea0743420de2bd40464 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-8.0.9.tgz + version: 8.0.9 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r7 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-08-13T15:29:34.852449407Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: d33b29667df360804647821e97ea5067ee2b41baa7125d084e773c9edb124234 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-8.0.8.tgz + version: 8.0.8 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-08-13T11:04:38.962590152Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: e8a53246847e315c4d130c62361e11cbfac8f0a1c00a00e53b42837f5681da6c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-8.0.7.tgz + version: 8.0.7 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-08-05T13:46:00.047677479Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 8f40b8d75cda3bea54158c0fbccd3648a035d0375c388f60c9e40971dd0de5e7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-8.0.6.tgz + version: 8.0.6 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-07-25T09:32:18.447416091Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 81be0a402b33dd0adbaf80e4e7e06f6403483419e62045d53b6cf07d2eb2bb43 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-8.0.5.tgz + version: 8.0.5 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r5 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r5 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-07-24T08:34:35.326841832Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: b53be44f7d943b9b7c86e41188061e5c429ccc2f521507b1585e20844a1de843 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-8.0.4.tgz + version: 8.0.4 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-07-23T15:05:14.707457668Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: fa911af3a455708ee2487b7a835e61607429e1eea365fb7d34c17a4946dce406 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-8.0.3.tgz + version: 8.0.3 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-07-18T11:12:08.898556821Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: dcb1165c3861ff0d92e3629d5cb9656eb86e9a592570e7c89f7763d49614f156 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-8.0.2.tgz + version: 8.0.2 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-07-16T11:42:19.623960135Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 95430b3495f882008c317b51d4bd612b1cfe7cd6241f0f8b02ba995d69acdf63 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-8.0.1.tgz + version: 8.0.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-07-13T10:46:15.16287366Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 1d73c2e333619ee4902d3d7a639ad1a6b906b2c4254b8cd4cd8c1f90ed31b9e8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-8.0.0.tgz + version: 8.0.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-07-12T10:19:10.834307997Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 86d399e58b41002220100fff1b9753b78317d9080295961fc34fa4766015843a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.3.8.tgz + version: 7.3.8 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r24 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-07-03T07:44:00.148927012Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: ed895131652262d6b2c59faaf4b0f60df1704a0698c34839567f396f97ec643a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.3.7.tgz + version: 7.3.7 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: matomo + image: docker.io/bitnami/matomo:5.1.0-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.1.0 + created: "2024-06-19T12:51:38.471509212Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 819203db16556da48233bc675260a124b0d56e0e8e056982eb07285f804faedc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.3.6.tgz + version: 7.3.6 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-06-12T13:22:24.561678319Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 159d6a624f96bc80643629d72d2251a7cd227f74cfcf23680bdc771cd6440f6a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.3.5.tgz + version: 7.3.5 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-06-06T15:43:29.145739159Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: dd75749687344daa54eba5af08938b70738a74e86939e7c664be7d11db8ae4d0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.3.4.tgz + version: 7.3.4 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-06-06T14:21:33.727332841Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 1dc924a5b86410816911b96edb33134206318d74eb56a8c25406cb1255ad8f8f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.3.3.tgz + version: 7.3.3 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-06-05T14:14:24.080370458Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: de09960e49ddf3f76368d395071c81943f899102e023bc5189d1b3d1749546ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.3.2.tgz + version: 7.3.2 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-05-29T09:53:21.231770163Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 349e84b873937a8af029b6d4279eec97902b4a61fc082c4f5ecc775c419bd969 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.3.0.tgz + version: 7.3.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-05-21T14:15:56.247024643Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: ba8e5ff291e248f65ac0e1a4b74fb86b29984aff7497caa6a27181f9825e91fb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.2.0.tgz + version: 7.2.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-05-20T07:39:02.786136589Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 1edc6eca4427698649e1eca0370a525f4d6c1f3b69e7424fccdc304254eec7b6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.1.3.tgz + version: 7.1.3 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-05-18T01:54:55.200330411Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 9f7b6a3282a5b08db0b13253ca3a47a5156ea2ede632733da27289a0e1c2b5fc + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.1.2.tgz + version: 7.1.2 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-05-14T05:19:55.185009683Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 6129bf3ad58f4602e956ea2a60ba71bd64d823435a8f024abeb6612acce9b4dd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.1.1.tgz + version: 7.1.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-05-07T14:31:16.91533982Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: a800eb0c2e033eee15f6eff355a8b5a442e3cc184f3991727096b73324f4e687 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.1.0.tgz + version: 7.1.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-05-07T11:54:17.521702414Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 169f5aec172bae39d5891fb53a54f01d77323af72451c43313b1063b2df5d20b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.0.5.tgz + version: 7.0.5 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-04-08T10:23:17.292752604Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 4d5608a5c2f8e1185209efa2f3b7e6a611a8fc2a59891c01e98dc1eadabe9ad9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.0.4.tgz + version: 7.0.4 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-04-05T17:57:24.527948694Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 80af37452b48dbd46117dd1e6b43062070724428c16ab6db6fcb314a0a290d02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.0.3.tgz + version: 7.0.3 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-04-05T13:49:31.503811841Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 650a9b61e753ee2a9f2fa92620a943433baff983994d69bbd9d1fb6111149e2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.0.2.tgz + version: 7.0.2 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-04-04T14:29:20.999348953Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: a148b408b8d58d54aa7c971f8002c943b4b5adb205aa870643e3a48ea1e6457d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.0.1.tgz + version: 7.0.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-04-03T11:19:16.439537085Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 886074c3a4e153eb3bf0313d11e13b22c477ebe7876146a13fc29aafea27fef5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-7.0.0.tgz + version: 7.0.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r18 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-04-02T12:24:20.750449137Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: a6cd1df1555cbff9668da536ecc42a2014c39801e60fcccea5c4f3deb004602e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-6.0.1.tgz + version: 6.0.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-03-20T17:02:39.375141407Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 940df5587484ef0047c4af8867fb15e4602707d3451c6201f6ba5487ab6745da + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-6.0.0.tgz + version: 6.0.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-03-14T15:38:18.668823694Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: de2bc25c6cccd61990e4dc5bcc8f4baa3673b55e4f45b6cff3c41eed355cd14a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.5.1.tgz + version: 5.5.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-03-14T09:12:40.457700988Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 0d05d781981277d105c8dc838410a40715d4dca6dfe51096b1fb2017c7cb60b7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.5.0.tgz + version: 5.5.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r8 + - name: matomo + image: docker.io/bitnami/matomo:5.0.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.3 + created: "2024-03-08T01:47:47.09163713Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 7b1e7048f643cebf4ef5ad3cac36c8ca66c61e2a26bc403847292e57578ca59a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.4.1.tgz + version: 5.4.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: matomo + image: docker.io/bitnami/matomo:5.0.2-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-03-06T09:11:05.214895199Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: e51eaa9946a91ddf3d8f9f407aae72fe5db83e6410a9e250c250a47fddd0200f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.4.0.tgz + version: 5.4.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: matomo + image: docker.io/bitnami/matomo:5.0.2-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-02-22T11:08:42.155026691Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 3ac697018fbc803a7b3308793502e39f59b8cc209764730dbc876a42ccbd802c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.3.2.tgz + version: 5.3.2 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r6 + - name: matomo + image: docker.io/bitnami/matomo:5.0.2-debian-12-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-02-21T15:36:13.098530418Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 974dd27b54952e7223f7699a2e72dedc9c3f11bdca326480481cf3e5489457c9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.3.1.tgz + version: 5.3.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: matomo + image: docker.io/bitnami/matomo:5.0.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-02-20T09:39:08.504062719Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 8a33b23446440168d094ed3d35dc2a1adc2cb33c30b1f0f59faa8aae65a5301c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.2.0.tgz + version: 5.2.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: matomo + image: docker.io/bitnami/matomo:5.0.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-02-12T12:30:37.673502649Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: cf2b766ba3ab9aab763cf3f0626671ec0a33c6eb2a3c604c24a374f3202059b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.1.5.tgz + version: 5.1.5 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: matomo + image: docker.io/bitnami/matomo:5.0.2-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.2 + created: "2024-02-05T18:29:16.949099268Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 2d54ebb3e4ef29870ef6a97780eec3c145232edbfe2268a1b0150d33103161b4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.1.4.tgz + version: 5.1.4 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: matomo + image: docker.io/bitnami/matomo:5.0.1-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.1 + created: "2024-02-03T00:11:47.644696109Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: d398a00e74aa12af7e386219664d7d8ccf58cad616c1f63f4650b991ae517f1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.1.3.tgz + version: 5.1.3 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r4 + - name: matomo + image: docker.io/bitnami/matomo:5.0.1-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.1 + created: "2024-01-31T04:04:08.042743015Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 54acbcf4cfe211d335edd0aa36521087248fa24d2b9298d8e063984cd6179bb9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.1.2.tgz + version: 5.1.2 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: matomo + image: docker.io/bitnami/matomo:5.0.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.1 + created: "2024-01-22T13:27:09.420623837Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 1c748cdf03ed2f2c6ccb7d360102affbe0a741366296f2418c6b864631b5ecfb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.1.0.tgz + version: 5.1.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: matomo + image: docker.io/bitnami/matomo:5.0.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.1 + created: "2024-01-18T06:27:35.330072766Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: a31f394325d90cd758f8aa428427f1740c2df7025b3d134b9346e0afa5684165 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.0.1.tgz + version: 5.0.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: matomo + image: docker.io/bitnami/matomo:5.0.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 5.0.1 + created: "2024-01-17T12:57:22.71460695Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 91b826b2ae878a1bdf8fa9380195b9e6294e1c309df2dd229f61b629a2aae730 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-5.0.0.tgz + version: 5.0.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: matomo + image: docker.io/bitnami/matomo:4.16.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.16.0 + created: "2024-01-16T14:51:07.913757417Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 9b9e6ebfa0dbf68962e3cd8179554f2569da85e213f986ab38357eb3ad6a5401 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-4.1.0.tgz + version: 4.1.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: matomo + image: docker.io/bitnami/matomo:4.16.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.16.0 + created: "2024-01-09T10:38:07.962350093Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: f4beed50899aaf243b2cbe979559ff2347263f9393025ebc1b5df9e86964b20c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-4.0.1.tgz + version: 4.0.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: matomo + image: docker.io/bitnami/matomo:4.16.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.16.0 + created: "2023-12-20T11:25:00.494943107Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 6e3fb09347ed244e85578ed16da271d39846d84ae3b980a1ee4b8503565c9529 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-4.0.0.tgz + version: 4.0.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: matomo + image: docker.io/bitnami/matomo:4.16.0-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r92 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.16.0 + created: "2023-12-20T08:39:17.970092805Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: b473787f07aea3d231c308ccad825d1469c66da32797eec82e2db25f21271853 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.3.1.tgz + version: 3.3.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: matomo + image: docker.io/bitnami/matomo:4.16.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.16.0 + created: "2023-12-18T11:51:15.1779255Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: b027fb86c29ed9c5e51cd91f1373da2eae23861993fa045fe71d9e5d8763341b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.3.0.tgz + version: 3.3.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: matomo + image: docker.io/bitnami/matomo:4.16.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.16.0 + created: "2023-11-29T12:21:35.204218705Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 5ae5b445684608fc9e7b8e53b5e557417d1e4541f406b208b35109390973dd2a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.2.2.tgz + version: 3.2.2 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: matomo + image: docker.io/bitnami/matomo:4.16.0-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.16.0 + created: "2023-11-28T18:20:58.81575825Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 20dfbd26754348379523724646e14f15933af1dcc0eb3c0c388dad19500ee8b1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.2.1.tgz + version: 3.2.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-11-24T11:08:41.160446012Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 5bf5c3b13c6deae6e698cf4055b465ea4d47e2e3c316faf54c88605153bfe523 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.2.0.tgz + version: 3.2.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-11-21T20:20:43.70224027Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: d7e4f978131ff1430becb6ae7d61a52c9d3f90e27a4a2d9823f0d8752c7c716b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.1.4.tgz + version: 3.1.4 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-11-20T09:25:12.031124455Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 8f86aabcfd58cf890dc410eb91c45afd5bfd2d121ccfa00a71edbe2093d13fb7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.1.3.tgz + version: 3.1.3 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-11-14T15:07:17.532025833Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 658432cfa39a6bed2ff7652baf1699bbd9d9adf3847a2669f4ed64af29cb87d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.1.2.tgz + version: 3.1.2 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-11-09T09:18:04.711063732Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 919a598a87224f4e11d2e254d4537aeb0750f6c7052e9c391b697cb1a371c614 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.1.1.tgz + version: 3.1.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-11-07T12:06:16.45530378Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 1132dff0cdb486465ba92d9fbbb082bb6efa49f7144d841f71cb3abb15b2b361 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.1.0.tgz + version: 3.1.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-10-17T16:33:58.18975622Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 5ae082f81b6fd2651041f58971ed735cc28891d6088a2ebef008bba25fbd7260 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.0.2.tgz + version: 3.0.2 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r10 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r63 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-10-12T15:20:03.21165866Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 0d48a0be7b4e9fced0136ea20d87bf42f5b26c615dee8a708384c41081052ca1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.0.1.tgz + version: 3.0.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r62 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-10-11T17:01:25.482625502Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 2530600a36ef2c53fa95da1500b02e3f670060c1cd6fa4208ced530e2bcfc6a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-3.0.0.tgz + version: 3.0.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r62 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-10-09T23:55:52.362658324Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: e5e72a377349705f9ff4d2cac864b128f15e8009859c8766f1960e67548f3a07 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.3.3.tgz + version: 2.3.3 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-09-15T14:09:31.639433698Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 91dabb8fe2803a1137e08d52d5ce5e3d4acda8a012fa4670645a127686282cec + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.2.2.tgz + version: 2.2.2 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-09-07T10:46:49.645723508Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 8c78fc7f84f4d5f1ee13ad2eb81f2f0558053a37a16676fc22e30b707b68f396 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.2.1.tgz + version: 2.2.1 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-08-29T10:18:47.058633956Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 38366543ca6fe5b2fbf137c7a94a9d013f460fb749a081afa20f1564792e90c7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.2.0.tgz + version: 2.2.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-08-24T20:43:16.765319238Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 50b2d218e6fcaf435fa3d035881a9a51886e8d00b18e61609a6b148056298736 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.1.0.tgz + version: 2.1.0 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r17 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-08-20T05:09:51.747708135Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: afe1a3cbb37565120b73074a1cfc0b69fbf634b3f2d126a4a1a8c398a0e7370e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.0.5.tgz + version: 2.0.5 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r17 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r14 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-08-17T17:05:04.292736067Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: a61358d8f15faf6acbbcc2f683daaa6725b235513ce9be02cc8531f77f3bc81c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.0.4.tgz + version: 2.0.4 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r2 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-08-09T11:29:36.510768943Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: f0b62b5f5d5b9f3d224186b945e1765612be978ffe8d87f34a52e46533d6c55a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.0.3.tgz + version: 2.0.3 + - annotations: + category: Analytics + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r2 + - name: matomo + image: docker.io/bitnami/matomo:4.15.1-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-08-03T15:04:32.814001663Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: d90e554e4742e7caf2f6fcc02248743d084bbf49285348d68ab262875b933acd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.0.2.tgz + version: 2.0.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.1 + created: "2023-08-01T19:12:27.402292057Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 4a199caad3b04de0ba16db9340211cb41e5973019f527c037d40c83064c861fb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.0.1.tgz + version: 2.0.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.0 + created: "2023-08-01T14:39:23.501418432Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 01cde05eb0875893ca816ce90fc79d0a7ee862d563134712e0a8b41f28819443 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-2.0.0.tgz + version: 2.0.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.0 + created: "2023-08-01T08:24:26.731349077Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 95ee155c760985285c930bc489526291a4f3305cc1ab12fa2c506d1b2b968f18 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.11.tgz + version: 1.1.11 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.0 + created: "2023-07-31T15:52:50.948167764Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 8faf9c558e0fd358fdab14f71f0f39a5715fb78a359ee3cdfae900c22bd22a82 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.10.tgz + version: 1.1.10 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.0 + created: "2023-07-26T01:03:21.841912728Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: ad74423562218cd1ba41a92e824903ac0bca5d5efb2dbad940bdae1360592551 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.9.tgz + version: 1.1.9 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.0 + created: "2023-07-15T09:37:59.07241516Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 2300453058d4a59ab7b7592f8bdda3385aae78e9a774182f35fb678dbe058835 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.8.tgz + version: 1.1.8 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.0 + created: "2023-07-11T11:56:43.087417027Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 9a60111276973e942e4d26743ed6e185c52411e767a69a377d68493b9faff945 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.7.tgz + version: 1.1.7 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.15.0 + created: "2023-07-07T08:56:36.669023805Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 3b29b22ea452a1a3556d8928a0e9b2b83fe9632a979f331e1e636ca1d37df217 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.6.tgz + version: 1.1.6 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.2 + created: "2023-06-30T17:25:08.736788244Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 4fe4063a355098196749cc39a4b48882d007b17424621e9c7244f9b09f5f0dce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.5.tgz + version: 1.1.5 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.2 + created: "2023-05-31T17:15:17.511601321Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: d26a1acb90a9aa81628c0b5b8df20f8dff3acae64f7381dd9eed2b137cb2c5d3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.4.tgz + version: 1.1.4 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.2 + created: "2023-05-30T11:52:47.332808678Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 31b005686b5b02643be44a8170d9aa7dd905afcc3fb430bb82113bf83ab10449 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.3.tgz + version: 1.1.3 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.2 + created: "2023-05-21T18:09:27.473231277Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 617baa22d40f61180605313a365aae7c976a9b2de80ef6049299be840fdddcd7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.2.tgz + version: 1.1.2 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.2 + created: "2023-05-11T14:24:20.576186689Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 632fdfcf477272a7d6b5dc3c90bb1ef05a9e912e77bae5426b3f48a55073df4a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/matomo + urls: + - https://charts.bitnami.com/bitnami/matomo-1.1.1.tgz + version: 1.1.1 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.2 + created: "2023-04-21T16:33:00.669000395Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: b14764ae726fcc26f20ff39a3391d02edc01e0492b4f80e295393d7c0be57ea3 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-1.0.0.tgz + version: 1.0.0 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.2 + created: "2023-04-19T00:29:10.28438565Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: f14bb605752f122f2de29dd3c04026c577adea056504ee5785ee22cf17a7ac17 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.32.tgz + version: 0.2.32 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.1 + created: "2023-04-14T11:14:30.436426215Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 3cf3eab8ce92ea33deea750e96cb76ced697d575dee07d59f9040a210e27f4d8 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.31.tgz + version: 0.2.31 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.1 + created: "2023-04-11T09:43:18.845555997Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 7231683effd61e1aa61bfd309590e0bc34db8fe232670d64b87ab59909beae4b + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.30.tgz + version: 0.2.30 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.1 + created: "2023-03-21T17:36:20.821962057Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 78e955d8be57e893459036778e09b0c48fd6db3d75864aa2fff9e4d853e41e13 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.29.tgz + version: 0.2.29 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.14.0 + created: "2023-03-20T20:31:44.697649398Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: dea5a71c4679a55172ab4aaabe894fa70390a5a3cf3e3581e0f306e290066a22 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.28.tgz + version: 0.2.28 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.3 + created: "2023-03-19T00:14:11.293278428Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 163e4c89fee0bef55e14b1309cb0986d117539e605b31c234c2834fc5378476d + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.27.tgz + version: 0.2.27 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.3 + created: "2023-03-01T12:01:19.419286798Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 1c1c9e334e082bd2de74839d4b51eaa4dbe7ecea67735cd7986abc747e4ef1c6 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.26.tgz + version: 0.2.26 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.3 + created: "2023-02-17T18:28:42.290312309Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 7423a26db918fdfbe2441392f085dba86534be3457c4a80cec31c6a2fecf54a7 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.25.tgz + version: 0.2.25 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.3 + created: "2023-02-15T08:10:01.032681138Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: fccb5c9ef34590d6e7ea2ad715c97b1f3d8e2ae33f4719d635ff4cf31ae9d12c + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.24.tgz + version: 0.2.24 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.3 + created: "2023-02-10T13:17:41.884260686Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: f707692664a06e18851c02e6de871f4226e78167e54ce4fdd33a2b7d51638d4c + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.23.tgz + version: 0.2.23 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.3 + created: "2023-01-31T15:41:49.062832778Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: d468744c5c7a3e865c67623ea3b9e6d0460041b446c9f2fed1cbe76b8bd10842 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.22.tgz + version: 0.2.22 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.3 + created: "2023-01-30T17:45:37.588305151Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: b74d00eabab3472d9beb90f31d607fe7dfd73a5e4af089323f84c9f40a11e29e + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.21.tgz + version: 0.2.21 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.2 + created: "2023-01-30T08:48:02.344433768Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: c7ea89a7aefbe5590d53b02225731ec9c401579b316df2895312c298f2353d6e + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.20.tgz + version: 0.2.20 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.2 + created: "2023-01-26T14:15:03.067050346Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 0501d463c7947a173aa95f3285d67f8c4285343c27e590526ca0400a39275be9 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.19.tgz + version: 0.2.19 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.1 + created: "2023-01-19T18:00:38.927144236Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 6dc75d16d3052272f7ccc14b4e3a6cd08dc4ff4e361fdb9518d47bc9a5c8f6fc + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.18.tgz + version: 0.2.18 + - annotations: + category: Analytics + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 4.13.1 + created: "2023-01-17T04:57:50.149498753Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: d50efc6ae5f53da938eb0fbcc5a7fcafb51ddf9278b44cd42516c0a39742e793 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.17.tgz + version: 0.2.17 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.13.0 + created: "2023-01-09T11:58:57.865374264Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 895ec2cd422ff5b3cac54b724f0944aea72d991e0d6e9e9d6185f3350de2343a + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.16.tgz + version: 0.2.16 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.13.0 + created: "2022-12-10T11:53:05.356126396Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 4cc64606a90ee350cb3a1f3d448c47a9700cc176e1c7f5366b1bf44149423ac1 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.15.tgz + version: 0.2.15 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.12.3 + created: "2022-11-26T08:48:28.110671263Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: e4ae57585c6c3088f7709c9259516ad4f85fbe860b08aa3bc3f939a9d34764ae + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.14.tgz + version: 0.2.14 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.12.3 + created: "2022-10-27T08:47:49.897487469Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 33f26305d66a1a0392c13f714283966892035030806ec3502fe515da25451029 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.13.tgz + version: 0.2.13 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.12.2 + created: "2022-10-26T09:57:52.063907748Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: a3c370c757f32be54d79a264356c832bf8d6c8e72b4abd42e92ce03745ded2d5 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.12.tgz + version: 0.2.12 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.12.2 + created: "2022-10-21T12:06:41.652112131Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 7c145fa81c7f3ccd61322d2bfc3546d825f4ca234b285f25e810cfaf5d290abe + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.11.tgz + version: 0.2.11 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.12.1 + created: "2022-10-20T10:33:54.562456604Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: aeaf27be719015ac265a49948cde49100448d00db0d2de0677b4ebfdbad67e95 + home: https://github.com/bitnami/charts/tree/main/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.10.tgz + version: 0.2.10 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.12.0 + created: "2022-10-11T19:08:12.402236456Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 27e5ac109f7bbd6a48681002ed16d8d7116cfe16c8484284044542550b851382 + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.9.tgz + version: 0.2.9 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.11.0 + created: "2022-09-30T13:19:55.595842284Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: ab0e0f945adc1e526fc4ce3c8e781adfe36d28a51c93fdc2c69f2f989cd2eae4 + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.8.tgz + version: 0.2.8 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.11.0 + created: "2022-09-21T10:21:02.617248912Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 5f40ea029c46d7325f256eac9a1fbfc0cb338664b438a0432b7aeb80439baad5 + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.6.tgz + version: 0.2.6 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.11.0 + created: "2022-09-14T11:13:22.420752876Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: fbdf66922c2c4ca2a17603767e3b2096b46b1c05daed98dee41125f1c19199b4 + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.5.tgz + version: 0.2.5 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.11.0 + created: "2022-09-13T04:10:09.400974858Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 786135c4a8a195482d353ce2514b13cb0b2014eab9060cb65d0dda242d7b8b20 + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.4.tgz + version: 0.2.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.11.0 + created: "2022-09-11T13:25:03.251243007Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: a297998be84d71a13e1a4192c8e9d1f6ef762ff4535dfb51b5fbcb230cbe15ee + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.3.tgz + version: 0.2.3 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.11.0 + created: "2022-08-26T10:40:44.157646621Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 14eca27c434ebd6a3d160bf97e098301040dab1426474b094ca7423b585ef994 + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.2.tgz + version: 0.2.2 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.10.1 + created: "2022-08-23T22:55:11.537094391Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 94fce1ab042be88a73b2ad74ad41d1bc73bf10dbdca0942c5f3913138fd703c1 + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.1.tgz + version: 0.2.1 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.10.1 + created: "2022-08-22T16:22:51.806729155Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 08662cbb0248b98fd0e04b23e2456d19d91d91355928ad2121f352dae8c864aa + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.2.0.tgz + version: 0.2.0 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.10.1 + created: "2022-08-04T12:17:08.600834866Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 193e712919b3671d351dae42bebccce211443682aaa186cb57862430e650ccac + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.1.4.tgz + version: 0.1.4 + - annotations: + category: Analytics + apiVersion: v2 + appVersion: 4.10.1 + created: "2022-07-12T21:02:13.518521476Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 1f070e79a5ff1651928def402fa6fb17d830384d8b2dc94eaa58519a112a9597 + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/bitnami-docker-matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.1.3.tgz + version: 0.1.3 + - annotations: + category: analytics + apiVersion: v2 + appVersion: 4.10.1 + created: "2022-07-12T10:30:08.904254012Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors. + digest: 4dd6c4f562d9394b4871fa030260012751d0df1ef7471e4de71bdb483439d79a + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/bitnami-docker-matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.1.2.tgz + version: 0.1.2 + - annotations: + category: analytics + apiVersion: v2 + appVersion: 4.10.1 + created: "2022-07-07T15:33:26.145649409Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: 'Matomo, formerly known as Piwik, is a real time web analytics program. + It provides detailed reports on website visitors: the search engines and keywords + they used, popular pages, and much more' + digest: 7d5af4bb74af7c5bbd9abe4c2525c23baff3d53f6133376f3dac8dddfe1a6c1d + home: https://github.com/bitnami/charts/tree/master/bitnami/matomo + icon: https://bitnami.com/assets/stacks/matomo/img/matomo-stack-220x234.png + keywords: + - matomo + - analytics + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: matomo + sources: + - https://github.com/bitnami/bitnami-docker-matomo + - https://www.matomo.org/ + urls: + - https://charts.bitnami.com/bitnami/matomo-0.1.0.tgz + version: 0.1.0 + mediawiki: + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.42.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.42.1 + created: "2024-08-06T10:02:40.690661663Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + deprecated: true + description: DEPRECATED MediaWiki is the free and open source wiki software that + powers Wikipedia. Used by thousands of organizations, it is extremely powerful, + scalable software and a feature-rich wiki implementation. + digest: adddecd55ea5b037bddf8860f71f4667d8b347b48587074849cf7b67690497e5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-21.0.5.tgz + version: 21.0.5 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.42.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.42.1 + created: "2024-08-05T10:12:20.90720229Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: a554a71c4af14b9e7d232984485a826dfe7cb20959bef591c5eeeb57ac1dd477 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-21.0.4.tgz + version: 21.0.4 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r6 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.42.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.42.1 + created: "2024-07-25T08:20:04.19556945Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 0c6255bfd45b66d312e4371ca0977cc717cd2c48d6092d954f4b9ebd36d795f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-21.0.3.tgz + version: 21.0.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r5 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.42.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.42.1 + created: "2024-07-24T11:25:35.205333784Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: da0021b22cf64afd5b932bae7d3a5b80acd7847db1a7f37d23b2a40b90bd7330 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-21.0.2.tgz + version: 21.0.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.42.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.42.1 + created: "2024-07-16T12:33:16.370584802Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: ef4d005eb71a20b63421421a19deed37316a0a8aebf6b0a27424431f58deccc6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-21.0.1.tgz + version: 21.0.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.42.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.42.1 + created: "2024-07-13T10:25:16.244352733Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 19.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 4d5895eeba26b7802e0ceb5dfdf5c93c58b5f707acc55b36635e7751eab1efbb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-21.0.0.tgz + version: 21.0.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r3 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.42.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.42.1 + created: "2024-07-04T18:01:27.387554183Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 17f9355f04eec8df705a04f5667146ab6d3354b6deec673c646a345941da925e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.2.9.tgz + version: 20.2.9 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.8-debian-12-r2 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-07-03T07:56:04.170234547Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 29ee2bdb0f65062cf39990c055086e7f78e769e1157a06a3ace73c095437b721 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.2.8.tgz + version: 20.2.8 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-06-18T12:20:20.072649263Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 265366be5f4bc68692aba8601c258d4a4446ac02d68ece63a5438f2a905f0a04 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.2.7.tgz + version: 20.2.7 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-06-17T12:59:42.527732526Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: c8d6776f592283d304dec27cb97b46bbcfecc72e795d3b4e55ee14ffbf4b7d11 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.2.6.tgz + version: 20.2.6 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-06-06T15:40:48.728331697Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 35ee9dbe2bbb46c4d67d874642bf6edce9bf0c8e38511ab3524afc1b7e0d00cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.2.5.tgz + version: 20.2.5 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r9 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-06-06T13:59:28.898225621Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 79b04b31fe6729453d1c6a80538deac3ac723571bd3fc8f84fc2f3f786d3ad91 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.2.4.tgz + version: 20.2.4 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-06-05T14:15:01.376663271Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 7291a4464784163b04d846330915d8e8945f35049581045faeee12ea37976ca9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.2.3.tgz + version: 20.2.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-06-04T10:05:03.162855433Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 3d66f5e38129fc17c6a0806e6f9ff87bda336e9f170370f445108fee1383e56c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.2.1.tgz + version: 20.2.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-06-03T12:07:01.810905796Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 75ded3b30f6ce78a0f482ef56123a8fb7e32bf2b2fe9f30bfa1aad5775926c24 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.2.0.tgz + version: 20.2.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-05-21T14:16:05.724271858Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 8692b9a9c87b75e714e40e60b3fec05b11840cb0cc372ff68c138082e1b9a578 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.1.0.tgz + version: 20.1.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-05-18T02:02:29.535769329Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: ee8e7b23a77f22ec42073e2800433499170b4f783484b74c26fe131f3f4927b5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.0.5.tgz + version: 20.0.5 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-05-16T13:33:41.880513512Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 5408fde210b47b713c6b9c09e82f7b8ec0903fe562f42fd4cb214a4003e88c14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.0.4.tgz + version: 20.0.4 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-05-14T05:20:51.780490664Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: a7e74decaf1f39e0781ba8a47c04a47948599891ffa230e181ad7ac6d7f77827 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.0.3.tgz + version: 20.0.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r3 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-04-08T22:39:12.562071018Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 16c1652d1453e340c656e45cbcdc42717f2309dfd0454a6a671555d48db1ee1c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.0.2.tgz + version: 20.0.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-04-05T14:46:40.635607401Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 670b2ee8b5399ae90f971659e492b68079bce91b71492b1c3e65f262b864ec7f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.0.1.tgz + version: 20.0.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-04-03T10:59:33.271082348Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 18.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 1df6d354acd88a52c4af28492800f6b8487b5aed4d2d21915da598eeee9c51bb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-20.0.0.tgz + version: 20.0.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r1 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-04-02T10:30:17.553073231Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 16.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 90a887898118a2a41036be9c76af607fb52a3f24a2eaf365da8c1e117dc83500 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-19.0.2.tgz + version: 19.0.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.7-debian-12-r0 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.1-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.1 + created: "2024-03-29T02:20:07.206183669Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 16.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 0812be73d11e52f0f2a6ffcb6914477903829f6002124d336aaca9ba8b66c85e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-19.0.1.tgz + version: 19.0.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-03-18T16:29:02.896507919Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 16.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: ab29689a3fb67bed7fb7b16f35c87256bc2e48282853a1d666b2f289eeb2c05b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-19.0.0.tgz + version: 19.0.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-03-06T11:31:43.603288494Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 3df56930ad187a9ab1459833623d17b642f8cd5e5a6e75e56ee1790d6357c085 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.5.0.tgz + version: 18.5.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r7 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-12-r9 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-02-22T15:20:17.43269895Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: f9d7832a5a527eae3dda3edad77716f0403cd779514f3f0702256fd47946bfb5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.4.1.tgz + version: 18.4.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r6 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-02-22T12:33:21.567307398Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 10a3f4f23f30dfcddc33181eaed9775e8731b52d7324f12a4094215c87b8b293 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.4.0.tgz + version: 18.4.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-12-r6 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-02-22T12:31:48.379976946Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 55bf6d24f90d8d1648e1f5dab2c1bbf3a946ee3361508083f686d02bd6e28594 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.3.1.tgz + version: 18.3.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.6-debian-11-r1 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-02-03T00:09:09.131646892Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 8bbc2cff36dd6e19dc596c872c860df7911d4a204ca20942346774e544a11753 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.2.4.tgz + version: 18.2.4 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r3 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-01-29T23:52:41.089261437Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: c89f100da07cac9ed03c1c863ec817506343a0b60d2f09c6769b681482854836 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.2.3.tgz + version: 18.2.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-01-26T10:05:12.903459344Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: ff764ff7a0c04bc7dafb902c1c766acd1d6fe23012863c616f264b9325f4faaa + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.2.2.tgz + version: 18.2.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-01-22T16:24:26.05263199Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 1e130f49f422316c6f3f86131fbdf094a9d2397062f7c1d8234aa7eb357d1694 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.2.0.tgz + version: 18.2.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.5-debian-11-r2 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-01-18T02:33:43.452886491Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: d1d906132683d71303812cdcb55c2f8b73a6fe466c914ee74a249303a6258c1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.1.1.tgz + version: 18.1.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2024-01-16T15:40:43.174943927Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 32150ed5f7f00f7961e1cd716397ddf530280ea463af43e9927758874e6217a5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.1.0.tgz + version: 18.1.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.41.0-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.41.0 + created: "2023-12-22T11:46:58.896210827Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: d530d4a1fab9e9d444df30dcafa9e342b4e4f68e33c0cec2acb5876b2b70cdd2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.0.1.tgz + version: 18.0.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-12-20T15:03:04.322432317Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 15.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 09204ad529ee137d378a2143ca0578befde7dac11b89d58615946486aa35ceb7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-18.0.0.tgz + version: 18.0.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r2 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-12-20T10:17:28.023194617Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 3731230a6e80ab85e135f9f5f376a6aff0568ab69eff2f70817e6ee5a4ab8fd0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-17.2.4.tgz + version: 17.2.4 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-11-22T13:46:38.447818144Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 11840f685f0a085a24169d77a1131f67ad6f8f8f204125b0319865a500462205 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-17.2.3.tgz + version: 17.2.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-11-22T05:12:30.53979422Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: f430fadb3c015ebf847e6b060ec3d194fc861d8128336ae8b0ce493834ef98e8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-17.2.2.tgz + version: 17.2.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r0 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-11-09T08:52:17.5026795Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: fa2b90062bbba54024030358655cc921cd1626ab5c0f0c9c83819a4315a1f458 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-17.2.1.tgz + version: 17.2.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-11-06T13:23:26.577899762Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: f1462743d24ed1d69f8e5cd2b0beeac02ed489fa4aa345d742aac1a3936a367f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-17.2.0.tgz + version: 17.2.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-10-16T14:15:29.829961611Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 2f45781b11431ff9cfa99a9506702a47702932d8b76cb0351c09ec3dd436826c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-17.1.0.tgz + version: 17.1.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-10-11T07:20:41.107068161Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 14.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: a6d74d861863324f1a6d50d8fe32fb319476293f43472a0549d5cfc812fe84a9 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-17.0.0.tgz + version: 17.0.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r8 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-10-09T20:14:03.793486068Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 43cbb8af1b2c3accb990d4dab3acf8bd1efce53ce32a2da4121b38c0c47c3ebe + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-16.1.5.tgz + version: 16.1.5 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r5 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-10-09T08:20:53.035198697Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 3c77f68aafc81b037139a566e72507d4902eeb53e4ac295bcead6b0ee95be687 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-16.1.4.tgz + version: 16.1.4 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.2-debian-11-r5 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.1-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.1 + created: "2023-10-04T03:32:32.631081669Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 9566b261791418bae5419eb897245f5981499cd4d3ed3f38a18331f5d8173181 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-16.1.3.tgz + version: 16.1.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r50 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.0-debian-11-r70 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-09-19T05:33:35.337592883Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 6e029dbc8007aa6439c0c7c8ecadf3134e9a81366162635428c2c3e0c97ee3ea + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-16.1.2.tgz + version: 16.1.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-09-07T10:51:02.690582646Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: c1ab8db6ed8e3157fffb4bd028e51cbe8d21552187643946db827dc95170843c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-16.1.1.tgz + version: 16.1.1 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-08-28T08:13:31.207440247Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: bde694262e4b47074ed93a5229fb7f079b264fe1da0ae90181b812ba3e9e4b14 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-16.1.0.tgz + version: 16.1.0 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r21 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.0-debian-11-r45 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-08-20T05:16:55.96533702Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: a479fde5f270078fd105014fefb0b6b3f66fcd0face395192d50d210c178dc27 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-16.0.3.tgz + version: 16.0.3 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r17 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.0-debian-11-r41 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-08-17T17:05:35.664661806Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 70a221aa227467ff1466137d04b295458b4722b188908bbc75f7e2da2ddf1a95 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-16.0.2.tgz + version: 16.0.2 + - annotations: + category: Wiki + images: | + - name: apache-exporter + image: docker.io/bitnami/apache-exporter:1.0.1-debian-11-r2 + - name: mediawiki + image: docker.io/bitnami/mediawiki:1.40.0-debian-11-r27 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-08-03T11:22:03.180465329Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: cf431b6b01bdd74bb8de13d20472923aa6a055870332177614a5f86c1651fc99 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-16.0.1.tgz + version: 16.0.1 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-08-01T14:39:15.942628906Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 13.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 84c12e31cbb4d573d3875622f760faf714491aad651f8378317fa48507c1e1ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-16.0.0.tgz + version: 16.0.0 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-08-01T08:26:59.784253761Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: bbb6fc3e9a40b8fc0f39001ddfd9804de66b404efa9d5a8723c7adf63ff8b8e6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-15.1.7.tgz + version: 15.1.7 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-07-26T07:39:24.290026282Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: e185366614b9b10a7a2a9b090fcdf5cc0b3cbfbb38fe27feeb04f4757d16b141 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-15.1.6.tgz + version: 15.1.6 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-07-21T14:29:17.889167979Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 8e3fab05ec8596b00189e533f7ee92d3fc7886c8da8d0c712fa2ec0c78b952c4 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-15.1.5.tgz + version: 15.1.5 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.40.0 + created: "2023-07-01T06:30:12.711448578Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: de2416bb372b6ab19e9ffa543518891659b02c32a3db5e21b6da538382617f93 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-15.1.4.tgz + version: 15.1.4 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.3 + created: "2023-06-20T19:48:02.058340594Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 26c26b3a5cd7c390181e77cf8ed0fbe4f0502fb53f6e2f717a93c95d5e29632e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-15.1.3.tgz + version: 15.1.3 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.3 + created: "2023-05-21T19:42:28.351788567Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 7b107f874c3e4a6899b8a6a0619617d519561993013bc8c87633741dd6bfe538 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-15.1.2.tgz + version: 15.1.2 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.3 + created: "2023-05-12T11:48:53.496593226Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 456a2b2254dbec17c00fc2966d0d0cae2b7cb47de3c1ddf54a5bde459ff9051f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + urls: + - https://charts.bitnami.com/bitnami/mediawiki-15.1.1.tgz + version: 15.1.1 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.3 + created: "2023-05-09T12:29:20.69675197Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: bfa95c009ef17cc8d0d59fa26e6584153d23c4784ce935724636373d9ffa4e29 + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-15.0.2.tgz + version: 15.0.2 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.3 + created: "2023-05-01T14:10:54.466997084Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 6ceb39a59246323c4eb012a0724731537195c420a7bccf3b4e3041c4381fc68c + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-15.0.1.tgz + version: 15.0.1 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.3 + created: "2023-04-21T16:32:00.942200815Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - mediawiki-database + version: 12.x.x + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 65d1ba1e85a3470ee39cb6c774ba020d1d12ed2b2d829240f582ef121d1988c6 + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-15.0.0.tgz + version: 15.0.0 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.3 + created: "2023-04-01T14:09:44.859001086Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: d42030cea2e66628f9afdccb4ac9611910566a318f3fe6ab352f3b1645a4e4db + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.18.tgz + version: 14.3.18 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.2 + created: "2023-03-19T00:05:28.636014171Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 9aa33f9b5ee2b57e6fd62685f6fedd074b39f04ceca2307c5cbff7ed88494130 + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.17.tgz + version: 14.3.17 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.2 + created: "2023-03-01T10:12:40.717204704Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 23ebeef3a0145ba716e1bc156146e5181506cf6f82eaafe7a4e74dd6911816eb + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.16.tgz + version: 14.3.16 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.2 + created: "2023-02-23T00:27:28.444330733Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 6bf1de5bff109fb0c16fb9b32ca17f3a5448a6ee70b6613fdd64df9a1c643269 + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.15.tgz + version: 14.3.15 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.1 + created: "2023-02-17T17:57:16.003111132Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 048e4bbfd3d3499d7831363a29826e86241713d83ab5c1689c9fcd96ee9318a8 + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.14.tgz + version: 14.3.14 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.1 + created: "2023-01-31T10:33:56.42047059Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: a0d56c423f2dede50008e29f1b44b6a1478b96013ded76924c68a920f6200113 + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.13.tgz + version: 14.3.13 + - annotations: + category: Wiki + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.39.1 + created: "2023-01-22T21:39:24.004285254Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 5cae921a7859aa8af801d765a2112cd1328fdf5e3aae984fe39400a89fc49268 + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.12.tgz + version: 14.3.12 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.39.1 + created: "2022-12-23T21:36:13.718869109Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: c57308aaa94f33296b0793ffd5a356f735212060ab02d958d7a81bc4eacc2904 + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.11.tgz + version: 14.3.11 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.39.1 + created: "2022-12-23T04:59:58.247758985Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 499145876cdc2e81a32a83418ec89a776b4e1207d77dc7e7719d1882fe3717de + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.10.tgz + version: 14.3.10 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.39.0 + created: "2022-11-30T23:32:18.943997456Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 34c5593370b6d240e34da42f7d1ef0acceee7f4b7277749fe3aabd728cc09b2c + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.9.tgz + version: 14.3.9 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.4 + created: "2022-11-12T07:28:17.818273938Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: a6c7c6ba394b2d5fd474832fc655268f3866c4734538c1c5f5d3878bdb4de8e5 + home: https://github.com/bitnami/charts/tree/main/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.8.tgz + version: 14.3.8 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.4 + created: "2022-10-12T20:27:16.007179712Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 80127c9ceff01c0b36ff1bf4da007c8d8ce813e38babbc43322b3406642a7b2c + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.7.tgz + version: 14.3.7 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.3 + created: "2022-10-12T19:46:30.51035523Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 96864eff95a870bc460008b9557271b148178ea1c4e52796c194c7f745aee7a5 + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.6.tgz + version: 14.3.6 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.2 + created: "2022-09-14T10:54:11.499726955Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 8a8863e18ca1666c7907cce1d90b790df637c3aad4afe56e2067c8c399f11bcb + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.4.tgz + version: 14.3.4 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.2 + created: "2022-09-12T07:41:40.300135532Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 0ba97ad2653aeeb21f774a015508f64b17209553e13c75627eadaeff571a7c24 + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.3.tgz + version: 14.3.3 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.2 + created: "2022-08-23T23:05:24.628291747Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 2b882ab02843437d7a4f4499e5c6d938b781df823523b9a83073ed89976b4a88 + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.1.tgz + version: 14.3.1 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.2 + created: "2022-08-22T16:22:31.14016115Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: eee6f91b01fd577401c786d2c1a00ace92827df0ae920079c730228f4578506f + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.3.0.tgz + version: 14.3.0 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.2 + created: "2022-08-11T08:53:03.8246698Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 8ec9fd9697db757853a8404f1770d36008706b1e91530b27505291cf163f6ec1 + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.2.15.tgz + version: 14.2.15 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.2 + created: "2022-08-11T08:41:13.731990243Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 0c4be652b48bef83e0d6e6432d221c0e910abefcf0fe65d346a1fe8883afe22f + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.2.14.tgz + version: 14.2.14 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.2 + created: "2022-07-10T08:45:54.252294926Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 7429922c6259f1ca201dd777e48148f76a40244a2d2d2ee6bc0ee320c9c4fa19 + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/bitnami-docker-mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.2.12.tgz + version: 14.2.12 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.2 + created: "2022-07-03T18:28:01.032604493Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 6c94b7b135342e16d89caaa76983e3d7acfc3d7e8317d68a8dd08af142fd4417 + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/bitnami-docker-mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.2.11.tgz + version: 14.2.11 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.1 + created: "2022-06-30T12:12:23.250533136Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: 67fa2749c0461edfbbed0396d50abacce5df6925abe8d9574c0916e710b76286 + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/bitnami-docker-mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.2.10.tgz + version: 14.2.10 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.38.1 + created: "2022-06-22T22:49:16.69639225Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: sha256:5a9cc7886bd409e4ed8f5584e04dda6cbb25ba616691100cc7a5baae2fd486a6 + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/bitnami-docker-mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.2.9.tgz + version: 14.2.9 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.37.2 + created: "2022-06-08T10:23:54.893554325Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: sha256:d305b384a982339d4838a184fb9371102555e373e92b8faca185933a4beffe99 + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/bitnami-docker-mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.2.8.tgz + version: 14.2.8 + - annotations: + category: Wiki + apiVersion: v2 + appVersion: 1.37.2 + created: "2022-06-01T17:08:48.934209077Z" + dependencies: + - condition: mariadb.enabled + name: mariadb + repository: https://charts.bitnami.com/bitnami + tags: + - mediawiki-database + version: 11.x.x + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: MediaWiki is the free and open source wiki software that powers Wikipedia. + Used by thousands of organizations, it is extremely powerful, scalable software + and a feature-rich wiki implementation. + digest: sha256:a8debdeccfa1ae2068c351f1c20f96ff290b11ddf402e4349b00af17f9b5df6d + home: https://github.com/bitnami/charts/tree/master/bitnami/mediawiki + icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png + keywords: + - mediawiki + - wiki + - http + - web + - application + - php + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: mediawiki + sources: + - https://github.com/bitnami/bitnami-docker-mediawiki + - https://www.mediawiki.org/ + urls: + - https://charts.bitnami.com/bitnami/mediawiki-14.2.7.tgz + version: 14.2.7 + memcached: + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r4 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.4-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r26 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.29 + created: "2024-07-25T06:27:45.214573167Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 704ee7a7078db4141db9dcba819926acde14f02b92e0ccc44efcb18813f42d03 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.11.tgz + version: 7.4.11 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r3 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.4-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r25 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.29 + created: "2024-07-24T10:22:20.628885862Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 2b0f97dcedd5c4a6776c4a466f0b25237c4ba3193a85418472901943fa34a9d0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.10.tgz + version: 7.4.10 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r23 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.29 + created: "2024-07-17T06:52:55.290678526Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 6c566bdd157dd31fbb67d5db5ae37364a2ba304d64e82ea9d77ae1e898d2bc81 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.9.tgz + version: 7.4.9 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.29-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.4-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r23 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.29 + created: "2024-06-29T02:37:34.224206863Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: be0d5d4f665ef3f637226e23229e080a69d7cffcf1421b925a9f278d574a219d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.8.tgz + version: 7.4.8 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.28 + created: "2024-06-18T12:21:00.452116957Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: b44432f4275d5139a2e6b8c6db0e9c7f333df8c138d5c2a2cf4bb68bc40c6925 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.7.tgz + version: 7.4.7 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.28 + created: "2024-06-17T12:59:56.984521275Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 518cf1b574b0d8ed73cd45c3c9d7a51a60a97db0f0cb7e736de5e8faaa4f4707 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.6.tgz + version: 7.4.6 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r8 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.28 + created: "2024-06-06T15:53:20.749025393Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: e9aaa8da3944081bcc2b7efafe40068767d9334279370a86dbfa660e7707bb1e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.5.tgz + version: 7.4.5 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.28 + created: "2024-06-06T06:56:14.570639391Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 2a3f67979ef2c11bb139d562fb9f4b5d5c4e66086ebd3ec333284aeef7aecfd7 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.4.tgz + version: 7.4.4 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.28 + created: "2024-06-04T09:46:14.270982733Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: d69fe07a98d2404981b2b21f9572b2bc8415c048a86e1ce3d8d5040fd47c0f02 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.3.tgz + version: 7.4.3 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.28-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r22 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.28 + created: "2024-05-31T17:50:31.196650885Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 04db05729c0261de0ceee45405c99616c0fdc28fb1bb7848f184376fb538a070 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.2.tgz + version: 7.4.2 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.27 + created: "2024-05-22T07:11:46.13873364Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: fae04cc3c239d950195e00e6d60e979a6e38875a997b34edcbc7f35790c39454 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.1.tgz + version: 7.4.1 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.27 + created: "2024-05-21T14:16:35.822520964Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 40dc58c18dd315f6fd653164684dac919ebc0105d2b216d10055085223328494 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.4.0.tgz + version: 7.4.0 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.27 + created: "2024-05-20T08:33:00.798972296Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 032b268bec0897577cbf18ce17d1cf8124c3dbea3ef72f753eb2bbe8add42f86 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.3.0.tgz + version: 7.3.0 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.27 + created: "2024-05-20T07:10:11.723642631Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 14ab89a2f07e6bed74e5f9b2a75e02a3c22852b0dc01f0f5c8d93848ab001c1f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.2.0.tgz + version: 7.2.0 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.27 + created: "2024-05-18T02:03:39.206412343Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: b09007a4a931dfc01aa7d03c3443cfeaede185b0973a96cb228ff0a32d8cde46 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.1.1.tgz + version: 7.1.1 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r2 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r7 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r21 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.27 + created: "2024-05-14T05:21:55.064609984Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 313dea5143f26d542884d665ec384a6e493e40e1d1f6422e0baf058503de0fd1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.0.6.tgz + version: 7.0.6 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r1 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r6 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.27 + created: "2024-05-08T16:24:49.238470638Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 0b910dec7c00436d05149eaff641fbd38ad572bd8cfb09218fd6dab65a63f41c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.0.5.tgz + version: 7.0.5 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.27-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r4 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r20 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.27 + created: "2024-05-06T07:27:58.509917035Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 3a17146b3dce271a43a9a00a87250d06c62e5574ed8c3e1567fcb0c7cc717b61 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.0.4.tgz + version: 7.0.4 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.26-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.3-debian-12-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r17 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.26 + created: "2024-03-27T22:33:45.916265897Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 3614ac5021a481e501f23bfcc030a7a04bee465201ff317c11c45de97eb1e499 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.0.3.tgz + version: 7.0.3 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.25-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-12-r11 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.25 + created: "2024-03-19T22:16:24.509471498Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 79e7f62dcabab75e57005eb3c92b0ec2b24eb4fc8bb4bc018d997a2be5209924 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.0.2.tgz + version: 7.0.2 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.24 + created: "2024-03-18T12:56:02.599812308Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: f3f61d15cdcb96b691dfbd3f9169bb972b3a061142938ff1b3e359d1235f1f5f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.0.1.tgz + version: 7.0.1 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.24 + created: "2024-03-18T10:11:13.499466598Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 76f2b72afad5a70826d09f51616bc69832daafa3e8aace8a61dc17ce4c34a55c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-7.0.0.tgz + version: 7.0.0 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.24 + created: "2024-03-06T14:32:50.477131697Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 729aa0fc402dcc3eb493028ef124a744f907b8dba997519bb7dea588703a3c5f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.14.0.tgz + version: 6.14.0 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.24 + created: "2024-03-05T15:10:34.443217008Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 4c5b41a739b05cba1aae630045405b794373a0c663be1708990783451b52be62 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.13.0.tgz + version: 6.13.0 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.24-debian-12-r0 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-12-r10 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r16 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.24 + created: "2024-02-28T04:45:35.327311199Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: d4f0e78cfa9a6cde9f6c7bf92964721b7e052cecba02be4b54cb22034cc29b25 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.12.2.tgz + version: 6.12.2 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-12-r6 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-12-r9 + - name: os-shell + image: docker.io/bitnami/os-shell:12-debian-12-r15 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-02-21T15:37:18.89597739Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 5c826055906366579252962b9222065840daafde0b3f63d72ab934838737ab4b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.12.1.tgz + version: 6.12.1 + - annotations: + category: Infrastructure + images: | + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r17 + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r19 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r109 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-02-15T13:06:54.934916364Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 8b7b7519e6dbd9dd1aab74b823f077a7873aa2f1887f8e967e470a2225865bd1 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.11.1.tgz + version: 6.11.1 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r5 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-02-15T11:32:12.308846688Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: b07e65b29734a489e5d10df04682628a5e8671b74d638f57d5a3d15433ea33ef + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.11.0.tgz + version: 6.11.0 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r5 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r3 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-02-03T00:14:03.682527096Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 68f55471b7dd7ad6975574fc16f4008fd0b751e06c1f8301b538eeacdeb857d5 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.10.1.tgz + version: 6.10.1 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r4 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-02-02T14:54:40.40984487Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 61e095a2b31329d16cf4b4fcab0bed5a8071eff5e7d94eea4d8d5c640eb071a6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.10.0.tgz + version: 6.10.0 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r4 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r95 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-01-31T04:07:04.090894893Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 1aa8b330d89b89b7f7323327a53a29d9256de214ba9d30c27efbc77d84ab2b8e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.9.3.tgz + version: 6.9.3 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-01-29T10:29:58.648271239Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: b4490f99dfb3589761bce460013b2d60cd456600d74ef21a8a792e1ba43fbae0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.9.2.tgz + version: 6.9.2 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-01-22T13:27:58.712602596Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: d9e892d0586f0ab963346ba0b4b40ff54b48def074e9098f1a74812d6aad1888 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.9.0.tgz + version: 6.9.0 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r94 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-01-18T02:35:49.930830597Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: f5bbaee745eeee2503275aec333ec505b85cb5df044828238de5d38662b7009b + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.8.1.tgz + version: 6.8.1 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-01-16T11:13:34.905922962Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 85efdbdeec7fb9052a89b94a69acd50ca4855bfec62adac13846620d7fa41ec8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.8.0.tgz + version: 6.8.0 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-01-15T08:18:38.350166045Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: da0951a8bd89701708bdd7530fce95370e8e6f4c5dc1b06c74754343b04299e0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.7.4.tgz + version: 6.7.4 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r1 + - name: memcached + image: docker.io/bitnami/memcached:1.6.23-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.23 + created: "2024-01-10T22:31:07.390829243Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: fb56b5378bfa728278a2b77915347d79fcd38b4d9cea908265d284e03b8266bd + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.7.3.tgz + version: 6.7.3 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.14.2-debian-11-r0 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r2 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r93 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.22 + created: "2023-12-31T18:38:57.998660663Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 56988686be20a41a160e1036972aa713eb7abbb6264d70d58a9ff642550acd23 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.7.2.tgz + version: 6.7.2 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r122 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r91 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.22 + created: "2023-11-21T18:35:44.517742307Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 61149adabb0b8db86c3573f3b9a97a0f67e927718ab44c39ff97a1336aff7821 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.7.1.tgz + version: 6.7.1 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r121 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.22 + created: "2023-11-09T08:12:26.424557748Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 4f5d641be37150c9ebbb747cf1bdc2c798840835c43e9fec29c6a09d0a5544c0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.7.0.tgz + version: 6.7.0 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r121 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.22 + created: "2023-11-08T16:33:29.898436332Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 9a7826101b87804418cf0002ab675ecc7179696fb3bdecde1beb86c3369e9f37 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.6.8.tgz + version: 6.6.8 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r121 + - name: memcached + image: docker.io/bitnami/memcached:1.6.22-debian-11-r0 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.22 + created: "2023-10-16T11:15:16.638259843Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 0c4d1dd48a5a41f220d8e7b7e73a3e2568e9a46f670d1db76c5d09639c8434e3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.6.7.tgz + version: 6.6.7 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r121 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r107 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r90 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-10-12T15:28:39.605742677Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 4799b087be5f0f0fb49931866402ca583b058b4a5539f7e72328710be83082de + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.6.6.tgz + version: 6.6.6 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r120 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r107 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r89 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-10-10T01:28:59.369028591Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 6333dbde0e9fb623b6ee8ed95c7b2fab9184b267eca8452c0d819c490c7cec31 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.6.5.tgz + version: 6.6.5 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r120 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r104 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r86 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-10-09T20:23:57.820960909Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 419b9d70aea491fd5658e512ca770ea3cc0ef1ae8489f5108893d1e3522c7aee + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.6.3.tgz + version: 6.6.3 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r95 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r84 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r63 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-09-11T10:36:28.98044936Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 233b02f18ea496fb06e85b11a0850ef53f0f7f7873cd2a70e52f14b65534d6be + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.6.2.tgz + version: 6.6.2 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r75 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r62 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-09-07T09:19:19.825191002Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 4a3e0da660db430a96a80e59e26c34e2db4dc6c9f97ac4737718d82cc9efc41e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.6.1.tgz + version: 6.6.1 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r75 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r62 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-08-22T15:12:27.74236066Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: bef3c150a017303fe76f1fcb0cf25ef640c7cdbdade24558bbaa195ff5c7c280 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.6.0.tgz + version: 6.6.0 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r75 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r62 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r43 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-08-20T05:44:37.616159664Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 15f2a139c5d7ef44445d7f460f5aab36044c12c51cda20e30a65bce3b66c202e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.5.9.tgz + version: 6.5.9 + - annotations: + category: Infrastructure + images: | + - name: memcached-exporter + image: docker.io/bitnami/memcached-exporter:0.13.0-debian-11-r71 + - name: memcached + image: docker.io/bitnami/memcached:1.6.21-debian-11-r58 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r40 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-08-17T18:22:25.863400101Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: b9c1611160019846414a748cbdde5f813b6cf2505473ec42df585ce0bb0617bf + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.5.8.tgz + version: 6.5.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-08-16T10:52:22.724229321Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 6c963c6c8d92def38cfc8c24a9025c812ed371f7a849e4e0228a35021f3870ce + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.5.7.tgz + version: 6.5.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-07-26T02:10:13.307814144Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 4cfb8d96da051d6f9680e62c4a338f9e9c6887e31fba0463ad20c44808975fb0 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.5.6.tgz + version: 6.5.6 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-07-15T09:34:59.617621057Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: f4bc1cce568a88b96a79aa5d27328d2fba1b589e6308c3d0b3f36b5e6db906ad + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.5.5.tgz + version: 6.5.5 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-06-27T18:11:28.823893392Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: d77a66c94d85872678782e87ca71320318be4d31969bce04004680e806c3f42f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.5.4.tgz + version: 6.5.4 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.21 + created: "2023-06-16T04:43:42.881717279Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: e08e1aa077d23cddc245159f2e40dedf6faceb527d5093fe5bfff83015f6bfcb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.5.3.tgz + version: 6.5.3 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.20 + created: "2023-05-21T19:25:51.742265317Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: e91eab35b6432ed14db3d6293472db67f6ed1ef31244c21cf6962e46af118320 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.5.2.tgz + version: 6.5.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.20 + created: "2023-05-13T01:32:10.934991261Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: ceb6f7f11f7f338cb103107e1abe48ac87379874e9b28d22f30a462124378630 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/memcached + urls: + - https://charts.bitnami.com/bitnami/memcached-6.5.1.tgz + version: 6.5.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.19 + created: "2023-05-09T12:29:35.43069942Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 98b0c462628176f5ef345f30a00e5f76d8a7dd22f8d6d092fad1dc46dc628e13 + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.4.2.tgz + version: 6.4.2 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.19 + created: "2023-05-01T14:22:02.101097738Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 22c796a5ef158a7d77c0ad8ed0b11024935901516015c9aa139e6fb8c80a30cd + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.4.1.tgz + version: 6.4.1 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.19 + created: "2023-04-01T14:22:36.384257528Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 9b15c2fe9de28a27c790b5b4d8ff42bafab489a29eb4a89a74603db2928abfdb + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.14.tgz + version: 6.3.14 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.19 + created: "2023-03-18T23:47:52.880370283Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 36dd5280cbecc3df8c910c08d0cf3486a42beb92df3418ac456888f2d17d4aa4 + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.13.tgz + version: 6.3.13 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.19 + created: "2023-03-14T07:49:40.308944806Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 23d08d44c51237b356e80814b96ee9f43b4dc9c1fff9cda343175a64c3cfb539 + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.12.tgz + version: 6.3.12 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.19 + created: "2023-03-09T01:54:18.703853307Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 1b5652d48d0f7322148714ae1f5db9f3ba34da5ca9593ba9c5484949d614d88c + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.11.tgz + version: 6.3.11 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.18 + created: "2023-03-07T12:51:42.135013599Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 5fb32813e808507a0cd96c317bf19aa3a7728ea1567dabbe10eb0d6c9967013d + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.10.tgz + version: 6.3.10 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.18 + created: "2023-03-02T20:56:29.466224664Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: efa304316d88d137643faf9a7146d4cefc7344dca5db6757399e9f3fef8ae201 + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.9.tgz + version: 6.3.9 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.18 + created: "2023-03-01T10:06:28.924384422Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 10b0486cba9f181d90de847d81e0916f79499bc8ce88fe65bfe6c1dc5ac2bd48 + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.8.tgz + version: 6.3.8 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.18 + created: "2023-02-17T17:06:03.815310539Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: cfc3e1c2fbccf8096c415ae5878e127247f915a0745734d3cf5650e66b27a66a + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.7.tgz + version: 6.3.7 + - annotations: + category: Infrastructure + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 1.6.18 + created: "2023-02-10T10:47:38.612278588Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 6b3cbcf814cfc56f4dc53100767209f3fe6f34b5256a49d312f3e5a6cf343b45 + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.6.tgz + version: 6.3.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.18 + created: "2023-01-11T10:46:52.872662184Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 0d24551b9826b3492f8b1b2deddc8a3c4dde450768d90e9af0cce0dfcae40119 + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.5.tgz + version: 6.3.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.17 + created: "2023-01-10T16:37:45.356055902Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 4f64113a213bc6749c7a268b8cd35a616b87ff658b6f32198824e5eca529ba7b + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.4.tgz + version: 6.3.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.17 + created: "2023-01-04T11:51:53.478765128Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: df36b9bd038a4e2c55c13f50d3ad412734ec17681ba0cb98d3f83246723c67a1 + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.3.tgz + version: 6.3.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.17 + created: "2022-12-12T09:03:39.440869803Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 08860e979e6eca203213f66c0fdd7a7076a4dad183315ae4f3d6b4d7000b4785 + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.2.tgz + version: 6.3.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.17 + created: "2022-11-12T07:19:31.438300503Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 687ab6c24f4801e8b73f615448ad36becbbbe3361c6e7dd92ccdda143c5d9ece + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.1.tgz + version: 6.3.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.17 + created: "2022-10-25T16:47:36.918683974Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: f110b6a78d9ee553e854d0bb79812aa02de8bbd1aebe0519ddf2d89be4dd2e12 + home: https://github.com/bitnami/charts/tree/main/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.3.0.tgz + version: 6.3.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.17 + created: "2022-10-12T16:12:18.280681277Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: dd9cabe9b7e69296d1cfeee2bd9198376be183104a0eac2afd464a68c3956be2 + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.2.7.tgz + version: 6.2.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.17 + created: "2022-10-10T08:10:27.725804774Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 7d272c88124e2c5e97e0a32709c1e43a4f33427e0dbb0d59d84e976cccc194b6 + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.2.6.tgz + version: 6.2.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.17 + created: "2022-09-21T10:43:45.873255353Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 41c8637b1fc745918173f2ebaeff8f5662a873052b7d431844f21d527d6df7cf + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.2.5.tgz + version: 6.2.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.17 + created: "2022-09-12T16:09:52.926588041Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: ac231bbf049ce5ee8ab036c56df13cb82e85e293d061bf42cfcbce91922e719a + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.2.4.tgz + version: 6.2.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.17 + created: "2022-08-29T20:13:44.749706666Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 698266f341b357c7b9ddbbf96ff20e408d77145a788b285fc899ee3277f1c98c + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.2.3.tgz + version: 6.2.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.16 + created: "2022-08-24T11:27:01.362613771Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 272ec5b1f4dddc2935947f05c0fc06e3b68390e71c1ee9ab8bf5c6af3394a12c + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.2.2.tgz + version: 6.2.2 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.16 + created: "2022-08-23T22:04:33.963235781Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: 79d1aad7fc8e6399c1afcbba874f0249e4de7f3b28b3893736438a4bca8011ef + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.2.1.tgz + version: 6.2.1 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.16 + created: "2022-08-22T13:59:57.627019535Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 2.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:a23ccadd2a3aa7532ae7f3fdb39c368e4474756a782a4dc879fdaff3af2a258f + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.2.0.tgz + version: 6.2.0 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.16 + created: "2022-08-09T14:56:58.211729291Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:ecc4ef352d29423444c6b1c54e970eb76842996f4f9f8b461b0cb1de3811c431 + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.1.11.tgz + version: 6.1.11 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.16 + created: "2022-08-04T23:06:22.018395138Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:e0ab2998c1c53fda6f373442c86dba6b04478b4ab789e20ab22ef4fe7d62f3c0 + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.1.10.tgz + version: 6.1.10 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.16 + created: "2022-08-04T09:22:05.494715119Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:fc88d083133175de69f2a7e6a567f7e1d02003a2cd13217ff7b1e93a462b7aa4 + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.1.9.tgz + version: 6.1.9 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.15 + created: "2022-08-03T09:08:43.807641725Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:f43c31b25b093435c74448d8e1cfbc3cd8583e1ed70d473889cf13cafd8eee56 + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.1.8.tgz + version: 6.1.8 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.15 + created: "2022-08-02T09:48:23.200869213Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:07529fae85bda50d2412577a655cb8602d522a20753f6435a7382406ea70732b + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.1.7.tgz + version: 6.1.7 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.15 + created: "2022-07-29T20:38:06.766502267Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:a635f93527c8dadd16d1c56b0f74c79f69d303d4a8e37d61f60d787f41f9fea6 + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/containers/tree/main/bitnami/memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.1.6.tgz + version: 6.1.6 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.15 + created: "2022-06-29T21:19:05.426055268Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:ee393730b7a888fcf98d73558e965418bdc24d68373091457b0685f532f19940 + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/bitnami-docker-memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.1.5.tgz + version: 6.1.5 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.15 + created: "2022-06-10T14:45:25.936734629Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:cfb94f6d3e2261eabf97c8a17376d51868b1b4ecff4d220f75d5b12462a48677 + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/bitnami-docker-memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.1.4.tgz + version: 6.1.4 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.15 + created: "2022-06-08T10:10:46.541833835Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:6a6dd9a7962cee2cfd6de6e1a31c676a10af58aa659e54dcbc9df3c998095ecc + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/bitnami-docker-memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.1.3.tgz + version: 6.1.3 + - annotations: + category: Infrastructure + apiVersion: v2 + appVersion: 1.6.15 + created: "2022-06-03T23:27:45.84315085Z" + dependencies: + - name: common + repository: https://charts.bitnami.com/bitnami + tags: + - bitnami-common + version: 1.x.x + description: Memcached is an high-performance, distributed memory object caching + system, generic in nature, but intended for use in speeding up dynamic web applications + by alleviating database load. + digest: sha256:c109303cb7aa4841896549d2a0be717d2fb8258b71772ad78e74b8c99074b28d + home: https://github.com/bitnami/charts/tree/master/bitnami/memcached + icon: https://bitnami.com/assets/stacks/memcached/img/memcached-stack-220x234.png + keywords: + - memcached + - cache + maintainers: + - name: Bitnami + url: https://github.com/bitnami/charts + name: memcached + sources: + - https://github.com/bitnami/bitnami-docker-memcached + - http://memcached.org/ + urls: + - https://charts.bitnami.com/bitnami/memcached-6.1.1.tgz + version: 6.1.1 + metallb: + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.8-debian-12-r3 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.8-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.8 + created: "2024-08-08T07:08:45.835896057Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: d13f182fc4ff3e10eb8fb44dbc52d148c1da19922ac3f63da4e8db93b7d34ac3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.3.10.tgz + version: 6.3.10 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r9 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-07-24T07:59:51.223966229Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: c06ab65a9c2822d56017f5bdb0cc92c999aa8d79c29f9d22d0146109fbee420a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.3.9.tgz + version: 6.3.9 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r9 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-07-16T13:20:18.158461951Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 12f5f16699d2df2ad42f8e35a414637b986e1b87f2d4f6501cdc80f35ff6bd77 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.3.8.tgz + version: 6.3.8 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r9 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r10 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-07-04T20:39:47.680120707Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: d446e06ec153309685be9501b1fb39053a5fc54629c50d56a1c3bcb1a67453f8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.3.7.tgz + version: 6.3.7 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r8 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-07-03T03:54:23.565653599Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 19f1edd6c9800417c2e21646ee51a65c78f9634fdec9cd96ba24a78b5ae3ed34 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.3.6.tgz + version: 6.3.6 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r6 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-06-18T12:24:12.410279043Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: ade36c9426eb810b723870e3b0628db30c8b7d82eb5117dfb40e7554e0435d66 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.3.5.tgz + version: 6.3.5 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r6 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-06-17T13:01:56.941787264Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 808a5a372a2283330ce05858f588eb63b2e9ed6f202a59226f0d7b1089b83011 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.3.4.tgz + version: 6.3.4 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r6 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-06-06T15:53:37.813088359Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 35247a998dc01321338acf8088480ed61fd3b52f3f8c6f3e462d4518f738fec2 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.3.3.tgz + version: 6.3.3 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r6 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-06-05T05:46:46.798229322Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: d924ec978d54e9eefb7485cd53dde8cf0a6b57ae1dfcd8d51df09361c73e3a64 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.3.2.tgz + version: 6.3.2 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r5 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-05-30T07:28:04.581485622Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: f21822d6f6e974b1a1c65e4c5588e5472c7e413fad42fd9b31bc971103e8c1c6 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.3.0.tgz + version: 6.3.0 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r5 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-05-22T06:00:37.547187945Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: f28aea8e971fae34fe1bc83d497ed780e6a491e00241702927bc664c6f765050 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.2.1.tgz + version: 6.2.1 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r5 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-05-21T14:15:09.737863373Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 62f04043272a295ff0d82fb5a2c16f6ea7db64a20db7dc31b37e60f9db8b1f88 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.2.0.tgz + version: 6.2.0 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r5 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-05-18T02:09:28.429936031Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 92262ddfbab0267c7779b762fa710ba25efbea041faa4ac04251cb53dde5ff16 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.1.7.tgz + version: 6.1.7 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r5 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-05-14T05:28:37.035105971Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: f739d92c0d0ff9a58312ed6cba16944d83653d5c61b9fc626d43863eb49eb42e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.1.6.tgz + version: 6.1.6 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r4 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-05-13T13:56:25.3373034Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: b05f8d38139f725a8bb9709b9ac74d82899c021c0304c5f4d0c9b76252212199 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.1.5.tgz + version: 6.1.5 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r4 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-05-08T08:08:17.326996698Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: e4500e813f3e89b7e8b4451d410adc1a92f2d304fe0a876cc224c119a883ba9f + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: Broadcom, Inc. All Rights Reserved. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.1.4.tgz + version: 6.1.4 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r2 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-05-02T11:11:17.06871905Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: b1a376113a0f3c3f584fb22923ca4b758be947dce3555e6274ded2908b2103ff + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.1.3.tgz + version: 6.1.3 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r2 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-04-23T14:44:29.560334176Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 9061caebba3ff766499a9680d66a04982a82db8cb46af0386e92c260fc8b5c42 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.1.2.tgz + version: 6.1.2 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r1 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-04-23T12:29:11.921540077Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 7869d64d45a11756ea8f01a17b3012a8d5041274bb87b1b278aafe376b5f2767 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.1.1.tgz + version: 6.1.1 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r1 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r2 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-04-23T09:54:26.224309076Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: b5e37d69522b7d2106b5f69536ed6e61aed74acb973087a68c888b0f9d75d6cb + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.1.0.tgz + version: 6.1.0 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r1 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-04-22T18:00:28.730509852Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 0ee39ecbd0f51327736e5a6042c96e034267a2c3b74c35f289aeb89b3c5b491c + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.0.1.tgz + version: 6.0.1 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.5-debian-12-r1 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.5-debian-12-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.5 + created: "2024-04-22T17:26:05.818651506Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: f47877106ca0daba7041114cee03dbdc58b939446860ac7af81ad30c1e446cd8 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-6.0.0.tgz + version: 6.0.0 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-12-r7 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-04-11T11:09:13.233836749Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: a98f703b1e34498bc1d700071cab4d76c05cb0990449162f7c3cea5353d24076 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-5.0.3.tgz + version: 5.0.3 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-12-r7 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-12-r8 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-03-21T15:10:55.843971231Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: b53a5cc498de036dc01510ebeddfa4c96644f12aa168274b88ed00e5d32747ba + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-5.0.2.tgz + version: 5.0.2 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-12-r6 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-12-r7 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-03-21T11:38:39.491477772Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: a158f68bc53335e61231f2c3ffa6b5c7cae809f3892ec75dc7e9b210bbfc2f72 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-5.0.1.tgz + version: 5.0.1 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-12-r6 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-03-12T10:09:54.327463091Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 54cc78dddc7b472c33cf1cf6e172234aa92586cde19561f0226c173602f3ec69 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-5.0.0.tgz + version: 5.0.0 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-12-r6 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-12-r6 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-03-06T20:27:11.752808844Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: a0ee05cd1579e68249b2668052dc97f1244161d3d1c8d30fe5710b6817c53176 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.16.1.tgz + version: 4.16.1 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-12-r5 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-03-06T11:31:01.903519572Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 66d8091f3aa5012c95ac6fd10f5d374eadc6e13bc5ceb11a453f9c798e444b71 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.16.0.tgz + version: 4.16.0 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-12-r5 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-02-29T11:00:27.967970193Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 19b39096f99bf23cbf081f8a011093a688806d801f183590a72973e6b2d4a338 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.15.0.tgz + version: 4.15.0 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-12-r5 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-12-r5 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-02-22T11:11:15.024888137Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 1fcf7cd08c1e028cb93c680fa990748f636f79d4f88099c54f022aa27063838d + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.14.2.tgz + version: 4.14.2 + - annotations: + category: Infrastructure + images: | + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-12-r4 + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-12-r4 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-02-21T15:38:55.347456027Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 820644e0de4cfe3395b04e493fe2e812e5860b5efea87570a1dcf19b47286b35 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.14.1.tgz + version: 4.14.1 + - annotations: + category: Infrastructure + images: | + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-11-r2 + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-02-15T11:32:26.295759819Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 0f8cf097ffe7cc5694adebb59d0c6f647866629e4b88b53bbd650ccdf0f90d9a + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.13.0.tgz + version: 4.13.0 + - annotations: + category: Infrastructure + images: | + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-11-r2 + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-11-r3 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-02-08T00:51:46.280759415Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 2feab928b85e9b3e7029e2fab2807c3697955647f2241540228930d267bb6fb3 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.12.2.tgz + version: 4.12.2 + - annotations: + category: Infrastructure + images: | + - m + - e + - t + - a + - l + - l + - b + - '-' + - c + - o + - n + - t + - r + - o + - l + - l + - e + - r + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-02-07T11:34:46.108831338Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: eec46d888064da24511561502b98ba7ab4bbb153b79e5edf97253b87b3f33855 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.12.1.tgz + version: 4.12.1 + - annotations: + category: Infrastructure + images: | + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-11-r1 + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-02-07T08:43:52.85644085Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 4c80428bbd8fa4ee73d651935ea7306a33f1dfa6f0561af8dabcd7ae5558746e + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.12.0.tgz + version: 4.12.0 + - annotations: + category: Infrastructure + images: | + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-11-r1 + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-11-r1 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-02-03T00:17:38.370043803Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 998e50ba1709f61389d6eff10a975c763f02886b04aade264b40e9288bb9a815 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.11.5.tgz + version: 4.11.5 + - annotations: + category: Infrastructure + images: | + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.3-debian-11-r0 + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.3-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.3 + created: "2024-02-01T07:10:40.833642748Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: a3df7942387e8e3ca0b8a11f375cb163f986b49ec36e4fe95f37d33dd72b8b52 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.11.4.tgz + version: 4.11.4 + - annotations: + category: Infrastructure + images: | + - name: metallb-speaker + image: docker.io/bitnami/metallb-speaker:0.14.2-debian-11-r0 + - name: metallb-controller + image: docker.io/bitnami/metallb-controller:0.14.2-debian-11-r0 + licenses: Apache-2.0 + apiVersion: v2 + appVersion: 0.14.2 + created: "2024-01-31T12:52:20.755411779Z" + dependencies: + - name: common + repository: oci://registry-1.docker.io/bitnamicharts + tags: + - bitnami-common + version: 2.x.x + description: MetalLB is a load-balancer implementation for bare metal Kubernetes + clusters, using standard routing protocols. + digest: 8d197f06b0725c26c83fc67739b069860c018e1f063f45cc82724cda41192315 + home: https://bitnami.com + icon: https://bitnami.com/assets/stacks/metallb-speaker/img/metallb-speaker-stack-220x234.png + keywords: + - load-balancer + - balancer + - lb + - bgp + - arp + - vrrp + - vip + kubeVersion: '>= 1.19.0-0' + maintainers: + - name: VMware, Inc. + url: https://github.com/bitnami/charts + name: metallb + sources: + - https://github.com/bitnami/charts/tree/main/bitnami/metallb + urls: + - https://charts.bitnami.com/bitnami/metallb-4.11.3.tgz + version: 4.11.3 + - annotations: + category: Infrastructure + images: | + - name: metallb-speaker + image: docker.io/bitnami/metallb-